1"mappings": {
2 "properties": {
3 "id": {
4 "type": "long"
5 },
6 "url": {
7 "type": "text",
8 "fields": {
9 "exact": {
10 "type": "keyword"
11 }
12 }
13 },
14 "name": {
15 "type": "text",
16 "fields": {
17 "exact": {
18 "type": "keyword"
19 }
20 }
21 },
22 "website": {
23 "type": "text",
24 "fields": {
25 "exact": {
26 "type": "keyword",
27 "null_value": "NULL"
28 },
29 "filter": {
30 "type": "text",
31 }
32 }
33 },
34 "size": {
35 "type": "keyword",
36 "null_value": "NULL"
37 },
38 "industry": {
39 "type": "text",
40 "fields": {
41 "exact": {
42 "type": "keyword",
43 "null_value": "NULL"
44 }
45 }
46 },
47 "description": {
48 "type": "text"
49 },
50 "founded": {
51 "type": "date",
52 "null_value": "1000",
53 },
54 "headquarters_country_parsed": {
55 "type": "keyword",
56 "null_value": "NULL"
57 },
58 "headquarters_new_address": {
59 "type": "text",
60 "fields": {
61 "exact": {
62 "type": "keyword",
63 "null_value": "NULL"
64 }
65 }
66 },
67 "source_id": {
68 "type": "long"
69 },
70 "created": {
71 "type": "date",
72 "format": "yyyy-MM-dd HH:mm:ss"
73 },
74 "last_updated": {
75 "type": "date",
76 "format": "yyyy-MM-dd HH:mm:ss"
77 },
78 "type": {
79 "type": "text"
80 },
81 "employees_count": {
82 "type": "long",
83 "null_value": -1
84 },
85 "shorthand_name": {
86 "type": "keyword"
87 },
88 "canonical_url": {
89 "type": "text",
90 "fields": {
91 "exact": {
92 "type": "keyword"
93 }
94 }
95 },
96 "canonical_shorthand_name": {
97 "type": "keyword"
98 },
99 "deleted": {
100 "type": "byte"
101 },
102 "company_crunchbase_info_collection": {
103 "type": "nested",
104 "properties": {
105 "id": {
106 "type": "long"
107 },
108 "cb_url": {
109 "type": "text",
110 "fields": {
111 "exact": {
112 "type": "keyword"
113 }
114 }
115 }
116 }
117 },
118 "company_specialties_collection": {
119 "type": "nested",
120 "properties": {
121 "id": {
122 "type": "long"
123 },
124 "specialty": {
125 "type": "text"
126 }
127 }
128 },
129 "company_stock_info_collection": {
130 "type": "nested",
131 "properties": {
132 "id": {
133 "type": "long"
134 },
135 "ticker": {
136 "type": "text"
137 }
138 }
139 },
140 "company_funding_rounds_collection": {
141 "type": "nested",
142 "properties": {
143 "id": {
144 "type": "long"
145 },
146 "last_round_investors_count": {
147 "type": "long"
148 },
149 "total_rounds_count": {
150 "type": "long",
151 "null_value": -1
152 },
153 "last_round_type": {
154 "type": "keyword"
155 },
156 "last_round_date": {
157 "type": "date",
158 "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||uuuu",
159 "null_value": "1000"
160 },
161 "last_round_money_raised": {
162 "type": "keyword"
163 },
164 "cb_url": {
165 "type": "keyword"
166 },
167 "created": {
168 "type": "date",
169 "format": "yyyy-MM-dd HH:mm:ss"
170 },
171 "last_updated": {
172 "type": "date",
173 "format": "yyyy-MM-dd HH:mm:ss"
174 },
175 "deleted": {
176 "type": "byte"
177 }
178 }
179 }
180 }
181}