1"mappings": {
2 "properties": {
3 "id": {
4 "type": "long"
5 },
6 "source_id": {
7 "type": "text"
8 },
9 "company_name": {
10 "type": "text",
11 "fields": {
12 "exact": {
13 "type": "keyword",
14 "null_value": "NULL"
15 }
16 }
17 },
18 "company_name_alias": {
19 "type": "keyword"
20 },
21 "company_legal_name": {
22 "type": "text"
23 },
24 "company_logo": {
25 "type": "text"
26 },
27 "website": {
28 "type": "text",
29 "fields": {
30 "exact": {
31 "type": "keyword",
32 "null_value": "NULL"
33 },
34 "domain_only": {
35 "type": "text"
36 }
37 }
38 },
39 "website_alias": {
40 "type": "text"
41 },
42 "professional_network_url": {
43 "type": "text",
44 "fields": {
45 "exact": {
46 "type": "keyword",
47 "null_value": "NULL"
48 }
49 }
50 },
51 "twitter_url": {
52 "type": "text",
53 "fields": {
54 "exact": {
55 "type": "keyword",
56 "null_value": "NULL"
57 }
58 }
59 },
60 "discord_url": {
61 "type": "text",
62 "fields": {
63 "exact": {
64 "type": "keyword",
65 "null_value": "NULL"
66 }
67 }
68 },
69 "facebook_url": {
70 "type": "text",
71 "fields": {
72 "exact": {
73 "type": "keyword",
74 "null_value": "NULL"
75 }
76 }
77 },
78 "instagram_url": {
79 "type": "text",
80 "fields": {
81 "exact": {
82 "type": "keyword",
83 "null_value": "NULL"
84 }
85 }
86 },
87 "pinterest_url": {
88 "type": "text",
89 "fields": {
90 "exact": {
91 "type": "keyword",
92 "null_value": "NULL"
93 }
94 }
95 },
96 "tiktok_url": {
97 "type": "text",
98 "fields": {
99 "exact": {
100 "type": "keyword",
101 "null_value": "NULL"
102 }
103 }
104 },
105 "youtube_url": {
106 "type": "text",
107 "fields": {
108 "exact": {
109 "type": "keyword",
110 "null_value": "NULL"
111 }
112 }
113 },
114 "github_url": {
115 "type": "text",
116 "fields": {
117 "exact": {
118 "type": "keyword",
119 "null_value": "NULL"
120 }
121 }
122 },
123 "reddit_url": {
124 "type": "text",
125 "fields": {
126 "exact": {
127 "type": "keyword",
128 "null_value": "NULL"
129 }
130 }
131 },
132 "financial_website_url": {
133 "type": "text",
134 "fields": {
135 "exact": {
136 "type": "keyword",
137 "null_value": "NULL"
138 }
139 }
140 },
141 "stock_ticker": {
142 "type": "nested",
143 "properties": {
144 "exchange": {
145 "type": "text",
146 "fields": {
147 "exact": {
148 "type": "keyword",
149 "null_value": "NULL"
150 }
151 }
152 },
153 "ticker": {
154 "type": "keyword"
155 }
156 }
157 },
158 "top_previous_companies": {
159 "type": "nested",
160 "properties": {
161 "company_id": {
162 "type": "long"
163 },
164 "company_name": {
165 "type": "text"
166 },
167 "count": {
168 "type": "long"
169 }
170 }
171 },
172 "top_next_companies": {
173 "type": "nested",
174 "properties": {
175 "company_id": {
176 "type": "long"
177 },
178 "company_name": {
179 "type": "text"
180 },
181 "count": {
182 "type": "long"
183 }
184 }
185 },
186 "is_b2b": {
187 "type": "long"
188 },
189 "industry": {
190 "type": "text",
191 "fields": {
192 "exact": {
193 "type": "keyword",
194 "null_value": "NULL"
195 }
196 }
197 },
198 "sic_codes": {
199 "type": "text",
200 "fields": {
201 "exact": {
202 "type": "keyword"
203 }
204 }
205 },
206 "naics_codes": {
207 "type": "text",
208 "fields": {
209 "exact": {
210 "type": "keyword"
211 }
212 }
213 },
214 "categories_and_keywords": {
215 "type": "text"
216 },
217 "description": {
218 "type": "text"
219 },
220 "description_enriched": {
221 "type": "text"
222 },
223 "description_metadata_raw": {
224 "type": "text"
225 },
226 "type": {
227 "type": "keyword"
228 },
229 "status": {
230 "properties": {
231 "value": {
232 "type": "text"
233 },
234 "comment": {
235 "type": "text"
236 }
237 }
238 },
239 "founded_year": {
240 "type": "text"
241 },
242 "size_range": {
243 "type": "keyword",
244 "null_value": "NULL"
245 },
246 "employees_count": {
247 "type": "long"
248 },
249 "followers_count_professional_network": {
250 "type": "long"
251 },
252 "followers_count_twitter": {
253 "type": "long"
254 },
255 "followers_count_owler": {
256 "type": "long"
257 },
258 "hq_region": {
259 "type": "text"
260 },
261 "hq_country": {
262 "type": "text"
263 },
264 "hq_country_iso2": {
265 "type": "text"
266 },
267 "hq_country_iso3": {
268 "type": "text"
269 },
270 "hq_location": {
271 "type": "text"
272 },
273 "hq_full_address": {
274 "type": "text"
275 },
276 "hq_city": {
277 "type": "text"
278 },
279 "hq_state": {
280 "type": "text"
281 },
282 "hq_street": {
283 "type": "text"
284 },
285 "hq_zipcode": {
286 "type": "text"
287 },
288 "company_locations_full": {
289 "type": "nested",
290 "properties": {
291 "location_address": {
292 "type": "text",
293 "null_value": "NULL"
294 },
295 "is_primary": {
296 "type": "long"
297 }
298 }
299 },
300 "is_public": {
301 "type": "boolean"
302 },
303 "ipo_date": {
304 "type": "date",
305 "format": "yyyy-MM-dd"
306 },
307 "ipo_share_price": {
308 "type": "long"
309 },
310 "ipo_share_price_currency": {
311 "type": "text"
312 },
313 "revenue_annual_range": {
314 "properties": {
315 "source_4_annual_revenue_range": {
316 "properties": {
317 "annual_revenue_range_from": {
318 "type": "double"
319 },
320 "annual_revenue_range_to": {
321 "type": "double"
322 },
323 "annual_revenue_range_currency": {
324 "type": "text"
325 }
326 }
327 },
328 "source_6_annual_revenue_range": {
329 "properties": {
330 "annual_revenue_range_from": {
331 "type": "double"
332 },
333 "annual_revenue_range_to": {
334 "type": "double"
335 },
336 "annual_revenue_range_currency": {
337 "type": "text"
338 }
339 }
340 }
341 }
342 },
343 "revenue_annual": {
344 "properties": {
345 "source_5_annual_revenue": {
346 "properties": {
347 "annual_revenue": {
348 "type": "long"
349 },
350 "annual_revenue_currency": {
351 "type": "text"
352 }
353 }
354 },
355 "source_1_annual_revenue": {
356 "properties": {
357 "annual_revenue": {
358 "type": "double"
359 },
360 "annual_revenue_currency": {
361 "type": "text"
362 }
363 }
364 }
365 }
366 },
367 "revenue_quarterly": {
368 "properties": {
369 "value": {
370 "type": "double"
371 },
372 "currency": {
373 "type": "text"
374 }
375 }
376 },
377 "income_statements": {
378 "type": "nested",
379 "properties": {
380 "cost_of_goods_sold": {
381 "type": "double"
382 },
383 "cost_of_goods_sold_currency": {
384 "type": "text"
385 },
386 "ebit": {
387 "type": "double"
388 },
389 "ebitda": {
390 "type": "double"
391 },
392 "ebitda_margin": {
393 "type": "double"
394 },
395 "ebit_margin": {
396 "type": "double"
397 },
398 "earnings_per_share": {
399 "type": "double"
400 },
401 "gross_profit": {
402 "type": "double"
403 },
404 "gross_profit_margin": {
405 "type": "double"
406 },
407 "income_tax_expense": {
408 "type": "double"
409 },
410 "interest_expense": {
411 "type": "double"
412 },
413 "interest_income": {
414 "type": "double"
415 },
416 "net_income": {
417 "type": "double"
418 },
419 "period_display_end_date": {
420 "type": "text"
421 },
422 "period_end_date": {
423 "type": "date",
424 "format": "yyyy-MM-dd"
425 },
426 "period_type": {
427 "type": "text"
428 },
429 "pre_tax_profit": {
430 "type": "long"
431 },
432 "revenue": {
433 "type": "long"
434 },
435 "total_operating_expense": {
436 "type": "long"
437 }
438 }
439 },
440 "stock_information": {
441 "type": "nested",
442 "properties": {
443 "closing_price": {
444 "type": "double",
445 "index": false
446 },
447 "currency": {
448 "type": "text",
449 "index": false
450 },
451 "date": {
452 "type": "date",
453 "format": "yyyy-MM-dd",
454 "index": false
455 },
456 "marketcap": {
457 "type": "double",
458 "index": false
459 }
460 }
461 },
462 "last_funding_round_name": {
463 "type": "text"
464 },
465 "last_funding_round_announced_date": {
466 "type": "date",
467 "format": "yyyy-MM-dd"
468 },
469 "last_funding_round_lead_investors": {
470 "type": "text"
471 },
472 "last_funding_round_amount_raised": {
473 "type": "long"
474 },
475 "last_funding_round_amount_raised_currency": {
476 "type": "text"
477 },
478 "last_funding_round_num_investors": {
479 "type": "long"
480 },
481 "funding_rounds": {
482 "type": "nested",
483 "properties": {
484 "name": {
485 "type": "text"
486 },
487 "announced_date": {
488 "type": "date",
489 "format": "yyyy-MM-dd"
490 },
491 "lead_investors": {
492 "type": "text"
493 },
494 "amount_raised": {
495 "type": "long"
496 },
497 "amount_raised_currency": {
498 "type": "text"
499 },
500 "num_investors": {
501 "type": "long"
502 }
503 }
504 },
505 "ownership_status": {
506 "type": "text"
507 },
508 "parent_company_information": {
509 "properties": {
510 "parent_company_name": {
511 "type": "text"
512 },
513 "parent_company_website": {
514 "type": "text"
515 },
516 "date": {
517 "type": "date",
518 "format": "yyyy-MM-dd"
519 }
520 }
521 },
522 "acquired_by_summary": {
523 "properties": {
524 "acquirer_name": {
525 "type": "text"
526 },
527 "announced_date": {
528 "type": "date",
529 "format": "yyyy-MM-dd"
530 },
531 "price": {
532 "type": "long"
533 },
534 "currency": {
535 "type": "text"
536 }
537 }
538 },
539 "num_acquisitions_source_1": {
540 "type": "long"
541 },
542 "acquisition_list_source_1": {
543 "type": "nested",
544 "properties": {
545 "acquiree_name": {
546 "type": "text"
547 },
548 "announced_date": {
549 "type": "date",
550 "format": "yyyy-MM-dd",
551 "ignore_malformed": true
552 },
553 "price": {
554 "type": "text"
555 },
556 "currency": {
557 "type": "text"
558 }
559 }
560 },
561 "num_acquisitions_source_2": {
562 "type": "long"
563 },
564 "acquisition_list_source_2": {
565 "type": "nested",
566 "properties": {
567 "acquiree_name": {
568 "type": "text"
569 },
570 "announced_date": {
571 "type": "date",
572 "format": "yyyy-MM-dd"
573 },
574 "price": {
575 "type": "long"
576 },
577 "currency": {
578 "type": "text"
579 }
580 }
581 },
582 "num_acquisitions_source_5": {
583 "type": "long"
584 },
585 "acquisition_list_source_5": {
586 "type": "nested",
587 "properties": {
588 "acquiree_name": {
589 "type": "text"
590 },
591 "announced_date": {
592 "type": "date",
593 "format": "yyyy-MM-dd"
594 },
595 "price": {
596 "type": "text"
597 },
598 "currency": {
599 "type": "text"
600 }
601 }
602 },
603 "competitors": {
604 "type": "nested",
605 "properties": {
606 "company_name": {
607 "type": "text"
608 },
609 "similarity_score": {
610 "type": "long"
611 }
612 }
613 },
614 "competitors_websites": {
615 "type": "nested",
616 "properties": {
617 "website": {
618 "type": "text"
619 },
620 "similarity_score": {
621 "type": "long"
622 },
623 "total_website_visits_monthly": {
624 "type": "long"
625 },
626 "category": {
627 "type": "text"
628 },
629 "rank_category": {
630 "type": "long"
631 }
632 }
633 },
634 "company_phone_numbers": {
635 "type": "text"
636 },
637 "company_emails": {
638 "type": "text"
639 },
640 "pricing_available": {
641 "type": "boolean"
642 },
643 "free_trial_available": {
644 "type": "boolean"
645 },
646 "demo_available": {
647 "type": "boolean"
648 },
649 "is_downloadable": {
650 "type": "boolean"
651 },
652 "mobile_apps_exist": {
653 "type": "boolean"
654 },
655 "online_reviews_exist": {
656 "type": "boolean"
657 },
658 "documentation_exist": {
659 "type": "boolean"
660 },
661 "product_reviews_count": {
662 "type": "long"
663 },
664 "product_reviews_aggregate_score": {
665 "type": "double"
666 },
667 "product_reviews_score_distribution": {
668 "properties": {
669 "1": {
670 "type": "long"
671 },
672 "2": {
673 "type": "long"
674 },
675 "3": {
676 "type": "long"
677 },
678 "4": {
679 "type": "long"
680 },
681 "5": {
682 "type": "long"
683 }
684 }
685 },
686 "product_pricing_summary": {
687 "type": "nested",
688 "properties": {
689 "details": {
690 "type": "text"
691 },
692 "price": {
693 "type": "text"
694 },
695 "type": {
696 "type": "text"
697 }
698 }
699 },
700 "num_news_articles": {
701 "type": "long"
702 },
703 "news_articles": {
704 "type": "nested",
705 "properties": {
706 "headline": {
707 "type": "text",
708 "index": false
709 },
710 "published_date": {
711 "type": "date",
712 "format": "yyyy-MM-dd",
713 "index": false
714 },
715 "summary": {
716 "type": "text",
717 "index": false
718 },
719 "article_url": {
720 "type": "text",
721 "index": false
722 }
723 }
724 },
725 "num_technologies_used": {
726 "type": "long"
727 },
728 "technologies_used": {
729 "type": "nested",
730 "properties": {
731 "technology": {
732 "type": "text"
733 },
734 "first_verified_at": {
735 "type": "date",
736 "format": "yyyy-MM-dd"
737 },
738 "last_verified_at": {
739 "type": "date",
740 "format": "yyyy-MM-dd"
741 }
742 }
743 },
744 "total_website_visits_monthly": {
745 "type": "long"
746 },
747 "visits_change_monthly": {
748 "type": "double"
749 },
750 "rank_global": {
751 "type": "long"
752 },
753 "rank_country": {
754 "type": "long"
755 },
756 "rank_category": {
757 "type": "long"
758 },
759 "visits_breakdown_by_country": {
760 "type": "nested",
761 "properties": {
762 "country": {
763 "type": "text",
764 "index": false
765 },
766 "percentage": {
767 "type": "double",
768 "index": false
769 },
770 "percentage_monthly_change": {
771 "type": "double",
772 "index": false
773 }
774 }
775 },
776 "visits_breakdown_by_gender": {
777 "properties": {
778 "male_percentage": {
779 "type": "double",
780 "index": false
781 },
782 "female_percentage": {
783 "type": "double",
784 "index": false
785 }
786 }
787 },
788 "visits_breakdown_by_age": {
789 "properties": {
790 "age_18_24_percentage": {
791 "type": "double",
792 "index": false
793 },
794 "age_25_34_percentage": {
795 "type": "double",
796 "index": false
797 },
798 "age_35_44_percentage": {
799 "type": "double",
800 "index": false
801 },
802 "age_45_54_percentage": {
803 "type": "double",
804 "index": false
805 },
806 "age_55_64_percentage": {
807 "type": "double",
808 "index": false
809 },
810 "age_65_plus_percentage": {
811 "type": "double",
812 "index": false
813 }
814 }
815 },
816 "bounce_rate": {
817 "type": "double"
818 },
819 "pages_per_visit": {
820 "type": "double"
821 },
822 "average_visit_duration_seconds": {
823 "type": "double"
824 },
825 "similarly_ranked_websites": {
826 "type": "text"
827 },
828 "top_topics": {
829 "type": "text"
830 },
831 "company_employee_reviews_count": {
832 "type": "long"
833 },
834 "company_employee_reviews_aggregate_score": {
835 "type": "double"
836 },
837 "employee_reviews_score_breakdown": {
838 "properties": {
839 "business_outlook": {
840 "type": "double"
841 },
842 "career_opportunities": {
843 "type": "double"
844 },
845 "ceo_approval": {
846 "type": "double"
847 },
848 "compensation_benefits": {
849 "type": "double"
850 },
851 "culture_values": {
852 "type": "double"
853 },
854 "diversity_inclusion": {
855 "type": "double"
856 },
857 "recommend": {
858 "type": "double"
859 },
860 "senior_management": {
861 "type": "double"
862 },
863 "work_life_balance": {
864 "type": "double"
865 }
866 }
867 },
868 "employee_reviews_score_distribution": {
869 "properties": {
870 "1": {
871 "type": "double"
872 },
873 "2": {
874 "type": "double"
875 },
876 "3": {
877 "type": "double"
878 },
879 "4": {
880 "type": "double"
881 },
882 "5": {
883 "type": "double"
884 }
885 }
886 },
887 "active_job_postings_count": {
888 "type": "long"
889 },
890 "active_job_postings_titles": {
891 "type": "text",
892 "fields": {
893 "exact": {
894 "type": "keyword"
895 }
896 }
897 },
898 "active_job_postings_count_by_month": {
899 "type": "nested",
900 "properties": {
901 "active_job_postings_count": {
902 "type": "long"
903 },
904 "date": {
905 "type": "date",
906 "format": "yyyy-MM"
907 }
908 }
909 },
910 "base_salary": {
911 "type": "nested",
912 "properties": {
913 "title": {
914 "type": "text",
915 "index": false
916 },
917 "salary_p25": {
918 "type": "double",
919 "index": false
920 },
921 "salary_median": {
922 "type": "double",
923 "index": false
924 },
925 "salary_p75": {
926 "type": "double",
927 "index": false
928 },
929 "currency": {
930 "type": "text",
931 "index": false
932 },
933 "pay_period": {
934 "type": "text",
935 "index": false
936 },
937 "salary_updated_at": {
938 "type": "date",
939 "format": "yyyy-MM-dd",
940 "index": false
941 }
942 }
943 },
944 "additional_pay": {
945 "type": "flattened"
946 },
947 "total_salary": {
948 "type": "nested",
949 "properties": {
950 "title": {
951 "type": "text",
952 "index": false
953 },
954 "salary_p25": {
955 "type": "double",
956 "index": false
957 },
958 "salary_median": {
959 "type": "double",
960 "index": false
961 },
962 "salary_p75": {
963 "type": "double",
964 "index": false
965 },
966 "currency": {
967 "type": "text",
968 "index": false
969 },
970 "pay_period": {
971 "type": "text",
972 "index": false
973 },
974 "salary_updated_at": {
975 "type": "date",
976 "format": "yyyy-MM-dd",
977 "index": false
978 }
979 }
980 },
981 "employees_count_breakdown_by_seniority": {
982 "properties": {
983 "employees_count_owner": {
984 "type": "long"
985 },
986 "employees_count_founder": {
987 "type": "long"
988 },
989 "employees_count_clevel": {
990 "type": "long"
991 },
992 "employees_count_partner": {
993 "type": "long"
994 },
995 "employees_count_vp": {
996 "type": "long"
997 },
998 "employees_count_head": {
999 "type": "long"
1000 },
1001 "employees_count_director": {
1002 "type": "long"
1003 },
1004 "employees_count_manager": {
1005 "type": "long"
1006 },
1007 "employees_count_senior": {
1008 "type": "long"
1009 },
1010 "employees_count_intern": {
1011 "type": "long"
1012 },
1013 "employees_count_specialist": {
1014 "type": "long"
1015 },
1016 "employees_count_other_management": {
1017 "type": "long"
1018 }
1019 }
1020 },
1021 "employees_count_breakdown_by_seniority_by_month": {
1022 "type": "nested",
1023 "properties": {
1024 "employees_count_breakdown_by_seniority": {
1025 "type": "object",
1026 "properties": {
1027 "employees_count_owner": {
1028 "type": "long"
1029 },
1030 "employees_count_founder": {
1031 "type": "long"
1032 },
1033 "employees_count_clevel": {
1034 "type": "long"
1035 },
1036 "employees_count_partner": {
1037 "type": "long"
1038 },
1039 "employees_count_vp": {
1040 "type": "long"
1041 },
1042 "employees_count_head": {
1043 "type": "long"
1044 },
1045 "employees_count_director": {
1046 "type": "long"
1047 },
1048 "employees_count_manager": {
1049 "type": "long"
1050 },
1051 "employees_count_senior": {
1052 "type": "long"
1053 },
1054 "employees_count_intern": {
1055 "type": "long"
1056 },
1057 "employees_count_specialist": {
1058 "type": "long"
1059 },
1060 "employees_count_other_management": {
1061 "type": "long"
1062 }
1063 }
1064 },
1065 "date": {
1066 "type": "date",
1067 "format": "yyyyMM"
1068 }
1069 }
1070 },
1071 "employees_count_breakdown_by_department": {
1072 "properties": {
1073 "employees_count_medical": {
1074 "type": "long"
1075 },
1076 "employees_count_sales": {
1077 "type": "long"
1078 },
1079 "employees_count_hr": {
1080 "type": "long"
1081 },
1082 "employees_count_legal": {
1083 "type": "long"
1084 },
1085 "employees_count_marketing": {
1086 "type": "long"
1087 },
1088 "employees_count_finance": {
1089 "type": "long"
1090 },
1091 "employees_count_technical": {
1092 "type": "long"
1093 },
1094 "employees_count_consulting": {
1095 "type": "long"
1096 },
1097 "employees_count_operations": {
1098 "type": "long"
1099 },
1100 "employees_count_product": {
1101 "type": "long"
1102 },
1103 "employees_count_general_management": {
1104 "type": "long"
1105 },
1106 "employees_count_administrative": {
1107 "type": "long"
1108 },
1109 "employees_count_customer_service": {
1110 "type": "long"
1111 },
1112 "employees_count_project_management": {
1113 "type": "long"
1114 },
1115 "employees_count_design": {
1116 "type": "long"
1117 },
1118 "employees_count_research": {
1119 "type": "long"
1120 },
1121 "employees_count_trades": {
1122 "type": "long"
1123 },
1124 "employees_count_real_estate": {
1125 "type": "long"
1126 },
1127 "employees_count_education": {
1128 "type": "long"
1129 },
1130 "employees_count_other_department": {
1131 "type": "long"
1132 }
1133 }
1134 },
1135 "employees_count_breakdown_by_department_by_month": {
1136 "type": "nested",
1137 "properties": {
1138 "employees_count_breakdown_by_department": {
1139 "type": "object",
1140 "properties": {
1141 "employees_count_sales": {
1142 "type": "long"
1143 },
1144 "employees_count_hr": {
1145 "type": "long"
1146 },
1147 "employees_count_legal": {
1148 "type": "long"
1149 },
1150 "employees_count_marketing": {
1151 "type": "long"
1152 },
1153 "employees_count_finance": {
1154 "type": "long"
1155 },
1156 "employees_count_technical": {
1157 "type": "long"
1158 },
1159 "employees_count_consulting": {
1160 "type": "long"
1161 },
1162 "employees_count_operations": {
1163 "type": "long"
1164 },
1165 "employees_count_product": {
1166 "type": "long"
1167 },
1168 "employees_count_general_management": {
1169 "type": "long"
1170 },
1171 "employees_count_administrative": {
1172 "type": "long"
1173 },
1174 "employees_count_customer_service": {
1175 "type": "long"
1176 },
1177 "employees_count_project_management": {
1178 "type": "long"
1179 },
1180 "employees_count_design": {
1181 "type": "long"
1182 },
1183 "employees_count_research": {
1184 "type": "long"
1185 },
1186 "employees_count_trades": {
1187 "type": "long"
1188 },
1189 "employees_count_real_estate": {
1190 "type": "long"
1191 },
1192 "employees_count_education": {
1193 "type": "long"
1194 },
1195 "employees_count_other_department": {
1196 "type": "long"
1197 }
1198 }
1199 },
1200 "date": {
1201 "type": "date",
1202 "format": "yyyyMM"
1203 }
1204 }
1205 },
1206 "employees_count_breakdown_by_region": {
1207 "properties": {
1208 "employees_count_eastern_europe": {
1209 "type": "long"
1210 },
1211 "employees_count_latin_america": {
1212 "type": "long"
1213 },
1214 "employees_count_southern_europe": {
1215 "type": "long"
1216 },
1217 "employees_count_sub_saharan_africa": {
1218 "type": "long"
1219 },
1220 "employees_count_central_asia": {
1221 "type": "long"
1222 },
1223 "employees_count_northern_america": {
1224 "type": "long"
1225 },
1226 "employees_count_australia_new_zealand": {
1227 "type": "long"
1228 },
1229 "employees_count_northern_europe": {
1230 "type": "long"
1231 },
1232 "employees_count_south_eastern_asia": {
1233 "type": "long"
1234 },
1235 "employees_count_polynesia": {
1236 "type": "long"
1237 },
1238 "employees_count_southern_asia": {
1239 "type": "long"
1240 },
1241 "employees_count_northern_africa": {
1242 "type": "long"
1243 },
1244 "employees_count_melanesia": {
1245 "type": "long"
1246 },
1247 "employees_count_western_europe": {
1248 "type": "long"
1249 },
1250 "employees_count_western_asia": {
1251 "type": "long"
1252 },
1253 "employees_count_eastern_asia": {
1254 "type": "long"
1255 },
1256 "employees_count_micronesia": {
1257 "type": "long"
1258 },
1259 "employees_count_unknown": {
1260 "type": "long"
1261 }
1262 }
1263 },
1264 "employees_count_breakdown_by_region_by_month": {
1265 "type": "nested",
1266 "properties": {
1267 "employees_count_breakdown_by_region": {
1268 "type": "object",
1269 "properties": {
1270 "employees_count_eastern_europe": {
1271 "type": "long"
1272 },
1273 "employees_count_latin_america": {
1274 "type": "long"
1275 },
1276 "employees_count_southern_europe": {
1277 "type": "long"
1278 },
1279 "employees_count_sub_saharan_africa": {
1280 "type": "long"
1281 },
1282 "employees_count_central_asia": {
1283 "type": "long"
1284 },
1285 "employees_count_northern_america": {
1286 "type": "long"
1287 },
1288 "employees_count_australia_new_zealand": {
1289 "type": "long"
1290 },
1291 "employees_count_northern_europe": {
1292 "type": "long"
1293 },
1294 "employees_count_south_eastern_asia": {
1295 "type": "long"
1296 },
1297 "employees_count_polynesia": {
1298 "type": "long"
1299 },
1300 "employees_count_southern_asia": {
1301 "type": "long"
1302 },
1303 "employees_count_northern_africa": {
1304 "type": "long"
1305 },
1306 "employees_count_melanesia": {
1307 "type": "long"
1308 },
1309 "employees_count_western_europe": {
1310 "type": "long"
1311 },
1312 "employees_count_western_asia": {
1313 "type": "long"
1314 },
1315 "employees_count_eastern_asia": {
1316 "type": "long"
1317 },
1318 "employees_count_micronesia": {
1319 "type": "long"
1320 },
1321 "employees_count_unknown": {
1322 "type": "long"
1323 }
1324 }
1325 },
1326 "date": {
1327 "type": "date",
1328 "format": "yyyyMM"
1329 }
1330 }
1331 },
1332 "employees_count_by_country": {
1333 "type": "nested",
1334 "properties": {
1335 "country": {
1336 "type": "text"
1337 },
1338 "employee_count": {
1339 "type": "long"
1340 }
1341 }
1342 },
1343 "employees_count_by_country_by_month": {
1344 "type": "flattened"
1345 },
1346 "key_executives": {
1347 "type": "flattened"
1348 },
1349 "key_employee_change_events": {
1350 "type": "nested",
1351 "properties": {
1352 "employee_change_event_name": {
1353 "type": "text"
1354 },
1355 "employee_change_event_date": {
1356 "type": "date",
1357 "format": "yyyy-MM-dd"
1358 },
1359 "employee_change_event_url": {
1360 "type": "text"
1361 }
1362 }
1363 },
1364 "key_executive_arrivals": {
1365 "type": "flattened"
1366 },
1367 "key_executive_departures": {
1368 "type": "flattened"
1369 },
1370 "employees_count_change": {
1371 "properties": {
1372 "current": {
1373 "type": "long"
1374 },
1375 "change_monthly": {
1376 "type": "long"
1377 },
1378 "change_monthly_percentage": {
1379 "type": "double"
1380 },
1381 "change_quarterly": {
1382 "type": "long"
1383 },
1384 "change_quarterly_percentage": {
1385 "type": "double"
1386 },
1387 "change_yearly": {
1388 "type": "long"
1389 },
1390 "change_yearly_percentage": {
1391 "type": "double"
1392 }
1393 }
1394 },
1395 "employees_count_by_month": {
1396 "type": "nested",
1397 "properties": {
1398 "employees_count": {
1399 "type": "long"
1400 },
1401 "date": {
1402 "type": "date",
1403 "format": "yyyy-MM"
1404 }
1405 }
1406 },
1407 "professional_network_followers_count_change": {
1408 "properties": {
1409 "current": {
1410 "type": "long"
1411 },
1412 "change_monthly": {
1413 "type": "long"
1414 },
1415 "change_monthly_percentage": {
1416 "type": "double"
1417 },
1418 "change_quarterly": {
1419 "type": "long"
1420 },
1421 "change_quarterly_percentage": {
1422 "type": "double"
1423 },
1424 "change_yearly": {
1425 "type": "long"
1426 },
1427 "change_yearly_percentage": {
1428 "type": "double"
1429 }
1430 }
1431 },
1432 "professional_network_followers_count_by_month": {
1433 "type": "nested",
1434 "properties": {
1435 "follower_count": {
1436 "type": "long"
1437 },
1438 "date": {
1439 "type": "date",
1440 "format": "yyyy-MM"
1441 }
1442 }
1443 },
1444 "active_job_postings_count_change": {
1445 "properties": {
1446 "current": {
1447 "type": "long"
1448 },
1449 "change_monthly": {
1450 "type": "long"
1451 },
1452 "change_monthly_percentage": {
1453 "type": "double"
1454 },
1455 "change_quarterly": {
1456 "type": "long"
1457 },
1458 "change_quarterly_percentage": {
1459 "type": "double"
1460 },
1461 "change_yearly": {
1462 "type": "long"
1463 },
1464 "change_yearly_percentage": {
1465 "type": "double"
1466 }
1467 }
1468 },
1469 "product_reviews_score_change": {
1470 "properties": {
1471 "current": {
1472 "type": "double"
1473 },
1474 "change_monthly": {
1475 "type": "double"
1476 },
1477 "change_quarterly": {
1478 "type": "double"
1479 },
1480 "change_yearly": {
1481 "type": "double"
1482 }
1483 }
1484 },
1485 "product_reviews_score_by_month": {
1486 "type": "nested",
1487 "properties": {
1488 "product_reviews_score": {
1489 "type": "double"
1490 },
1491 "date": {
1492 "type": "date",
1493 "format": "yyyy-MM"
1494 }
1495 }
1496 },
1497 "total_website_visits_change": {
1498 "properties": {
1499 "current": {
1500 "type": "long"
1501 },
1502 "change_monthly": {
1503 "type": "long"
1504 },
1505 "change_monthly_percentage": {
1506 "type": "double"
1507 },
1508 "change_quarterly": {
1509 "type": "long"
1510 },
1511 "change_quarterly_percentage": {
1512 "type": "double"
1513 },
1514 "change_yearly": {
1515 "type": "long"
1516 },
1517 "change_yearly_percentage": {
1518 "type": "double"
1519 }
1520 }
1521 },
1522 "total_website_visits_by_month": {
1523 "type": "nested",
1524 "properties": {
1525 "total_website_visits": {
1526 "type": "long"
1527 },
1528 "date": {
1529 "type": "date",
1530 "format": "yyyy-MM"
1531 }
1532 }
1533 },
1534 "employee_reviews_score_aggregated_change": {
1535 "properties": {
1536 "current": {
1537 "type": "double"
1538 },
1539 "change_monthly": {
1540 "type": "double"
1541 },
1542 "change_quarterly": {
1543 "type": "double"
1544 },
1545 "change_yearly": {
1546 "type": "double"
1547 }
1548 }
1549 },
1550 "employee_reviews_score_aggregated_by_month": {
1551 "type": "nested",
1552 "properties": {
1553 "aggregated_score": {
1554 "type": "double"
1555 },
1556 "date": {
1557 "type": "date",
1558 "format": "yyyy-MM"
1559 }
1560 }
1561 },
1562 "employee_reviews_score_business_outlook_change": {
1563 "properties": {
1564 "current": {
1565 "type": "double"
1566 },
1567 "change_monthly": {
1568 "type": "double"
1569 },
1570 "change_quarterly": {
1571 "type": "double"
1572 },
1573 "change_yearly": {
1574 "type": "double"
1575 }
1576 }
1577 },
1578 "employee_reviews_score_business_outlook_by_month": {
1579 "type": "nested",
1580 "properties": {
1581 "business_outlook_score": {
1582 "type": "double"
1583 },
1584 "date": {
1585 "type": "date",
1586 "format": "yyyy-MM"
1587 }
1588 }
1589 },
1590 "employee_reviews_score_career_opportunities_change": {
1591 "properties": {
1592 "current": {
1593 "type": "double"
1594 },
1595 "change_monthly": {
1596 "type": "double"
1597 },
1598 "change_quarterly": {
1599 "type": "double"
1600 },
1601 "change_yearly": {
1602 "type": "double"
1603 }
1604 }
1605 },
1606 "employee_reviews_score_career_opportunities_by_month": {
1607 "type": "nested",
1608 "properties": {
1609 "career_opportunities_score": {
1610 "type": "double"
1611 },
1612 "date": {
1613 "type": "date",
1614 "format": "yyyy-MM"
1615 }
1616 }
1617 },
1618 "employee_reviews_score_ceo_approval_change": {
1619 "properties": {
1620 "current": {
1621 "type": "double"
1622 },
1623 "change_monthly": {
1624 "type": "double"
1625 },
1626 "change_quarterly": {
1627 "type": "double"
1628 },
1629 "change_yearly": {
1630 "type": "double"
1631 }
1632 }
1633 },
1634 "employee_reviews_score_ceo_approval_by_month": {
1635 "type": "nested",
1636 "properties": {
1637 "ceo_approval_score": {
1638 "type": "double"
1639 },
1640 "date": {
1641 "type": "date",
1642 "format": "yyyy-MM"
1643 }
1644 }
1645 },
1646 "employee_reviews_score_compensation_benefits_change": {
1647 "properties": {
1648 "current": {
1649 "type": "double"
1650 },
1651 "change_monthly": {
1652 "type": "double"
1653 },
1654 "change_quarterly": {
1655 "type": "double"
1656 },
1657 "change_yearly": {
1658 "type": "double"
1659 }
1660 }
1661 },
1662 "employee_reviews_score_compensation_benefits_by_month": {
1663 "type": "nested",
1664 "properties": {
1665 "compensation_benefits_score": {
1666 "type": "double"
1667 },
1668 "date": {
1669 "type": "date",
1670 "format": "yyyy-MM"
1671 }
1672 }
1673 },
1674 "employee_reviews_score_culture_values_change": {
1675 "properties": {
1676 "current": {
1677 "type": "double"
1678 },
1679 "change_monthly": {
1680 "type": "double"
1681 },
1682 "change_quarterly": {
1683 "type": "double"
1684 },
1685 "change_yearly": {
1686 "type": "double"
1687 }
1688 }
1689 },
1690 "employee_reviews_score_culture_values_by_month": {
1691 "type": "nested",
1692 "properties": {
1693 "culture_values_score": {
1694 "type": "double"
1695 },
1696 "date": {
1697 "type": "date",
1698 "format": "yyyy-MM"
1699 }
1700 }
1701 },
1702 "employee_reviews_score_diversity_inclusion_change": {
1703 "properties": {
1704 "current": {
1705 "type": "double"
1706 },
1707 "change_monthly": {
1708 "type": "double"
1709 },
1710 "change_quarterly": {
1711 "type": "double"
1712 },
1713 "change_yearly": {
1714 "type": "double"
1715 }
1716 }
1717 },
1718 "employee_reviews_score_diversity_inclusion_by_month": {
1719 "type": "nested",
1720 "properties": {
1721 "diversity_inclusion_score": {
1722 "type": "double"
1723 },
1724 "date": {
1725 "type": "date",
1726 "format": "yyyy-MM"
1727 }
1728 }
1729 },
1730 "employee_reviews_score_recommend_change": {
1731 "properties": {
1732 "current": {
1733 "type": "double"
1734 },
1735 "change_monthly": {
1736 "type": "double"
1737 },
1738 "change_quarterly": {
1739 "type": "double"
1740 },
1741 "change_yearly": {
1742 "type": "double"
1743 }
1744 }
1745 },
1746 "employee_reviews_score_recommend_by_month": {
1747 "type": "nested",
1748 "properties": {
1749 "recommend_score": {
1750 "type": "double"
1751 },
1752 "date": {
1753 "type": "date",
1754 "format": "yyyy-MM"
1755 }
1756 }
1757 },
1758 "employee_reviews_score_senior_management_change": {
1759 "properties": {
1760 "current": {
1761 "type": "double"
1762 },
1763 "change_monthly": {
1764 "type": "double"
1765 },
1766 "change_quarterly": {
1767 "type": "double"
1768 },
1769 "change_yearly": {
1770 "type": "double"
1771 }
1772 }
1773 },
1774 "employee_reviews_score_senior_management_by_month": {
1775 "type": "nested",
1776 "properties": {
1777 "senior_management_score": {
1778 "type": "double"
1779 },
1780 "date": {
1781 "type": "date",
1782 "format": "yyyy-MM"
1783 }
1784 }
1785 },
1786 "employee_reviews_score_work_life_balance_change": {
1787 "properties": {
1788 "current": {
1789 "type": "double"
1790 },
1791 "change_monthly": {
1792 "type": "double"
1793 },
1794 "change_quarterly": {
1795 "type": "double"
1796 },
1797 "change_yearly": {
1798 "type": "double"
1799 }
1800 }
1801 },
1802 "employee_reviews_score_work_life_balance_by_month": {
1803 "type": "nested",
1804 "properties": {
1805 "work_life_balance_score": {
1806 "type": "double"
1807 },
1808 "date": {
1809 "type": "date",
1810 "format": "yyyy-MM"
1811 }
1812 }
1813 },
1814 "expired_domain": {
1815 "type": "boolean"
1816 },
1817 "unique_domain": {
1818 "type": "boolean"
1819 },
1820 "unique_website": {
1821 "type": "boolean"
1822 },
1823 "last_updated_at": {
1824 "type": "date",
1825 "format": "yyyy-MM-dd"
1826 },
1827 "created_at": {
1828 "type": "date",
1829 "format": "yyyy-MM-dd"
1830 },
1831 "company_updates": {
1832 "type": "nested",
1833 "properties": {
1834 "followers": {
1835 "type": "long"
1836 },
1837 "date": {
1838 "type": "keyword",
1839 "null_value": "NULL"
1840 },
1841 "description": {
1842 "type": "text",
1843 "fields": {
1844 "exact": {
1845 "type": "keyword",
1846 "null_value": "NULL"
1847 }
1848 }
1849 },
1850 "reactions_count": {
1851 "type": "long"
1852 },
1853 "comments_count": {
1854 "type": "long"
1855 },
1856 "reshared_post_author": {
1857 "type": "text",
1858 "fields": {
1859 "exact": {
1860 "type": "keyword",
1861 "null_value": "NULL"
1862 }
1863 }
1864 },
1865 "reshared_post_author_url": {
1866 "type": "text",
1867 "fields": {
1868 "exact": {
1869 "type": "keyword",
1870 "null_value": "NULL"
1871 }
1872 }
1873 },
1874 "reshared_post_author_headline": {
1875 "type": "text",
1876 "fields": {
1877 "exact": {
1878 "type": "keyword",
1879 "null_value": "NULL"
1880 }
1881 }
1882 },
1883 "reshared_post_description": {
1884 "type": "text",
1885 "fields": {
1886 "exact": {
1887 "type": "keyword",
1888 "null_value": "NULL"
1889 }
1890 }
1891 },
1892 "reshared_post_followers": {
1893 "type": "long"
1894 },
1895 "reshared_post_date": {
1896 "type": "keyword",
1897 "null_value": "NULL"
1898 }
1899 }
1900 }
1901 }
1902 }