forked from meetmakwana19/intelligence-hub-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofiles.json
More file actions
1147 lines (1147 loc) · 30.8 KB
/
profiles.json
File metadata and controls
1147 lines (1147 loc) · 30.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "1",
"title": "Apple",
"createdBy": "John Doe",
"createdAt": "2024-01-10T12:34:56Z",
"modifiedAt": "2024-01-15T08:30:00Z",
"stacks": "iOS, macOS, wearables",
"contentType": "Product",
"description": "Innovative technology and electronics company known for its smartphones, tablets, and computers.",
"tags": [
"technology",
"electronics",
"smartphones",
"computers"
]
},
{
"id": "2",
"title": "Nike",
"createdBy": "Jane Smith",
"createdAt": "2024-01-10T13:45:23Z",
"modifiedAt": "2024-01-15T09:30:00Z",
"stacks": "Athletic wear, sports equipment",
"contentType": "Product",
"description": "Adibas, Nika, Uima",
"tags": [
"athletic",
"footwear",
"apparel",
"sports"
]
},
{
"id": "3",
"title": "Google2",
"createdBy": "Alex Johnson",
"createdAt": "2024-01-10T14:56:42Z",
"modifiedAt": "2024-01-15T10:30:00Z",
"stacks": "Search, Cloud, Android",
"contentType": "Service",
"description": "Leading multinational technology company specializing in internet-related services and products.",
"tags": [
"technology",
"internet",
"search engine",
"software"
]
},
{
"id": "4",
"title": "Disney",
"createdBy": "Emily Davis",
"createdAt": "2024-01-10T15:30:18Z",
"modifiedAt": "2024-01-15T11:30:00Z",
"stacks": "Entertainment, Media",
"contentType": "Media",
"description": "Premier entertainment company offering movies, TV shows, theme parks, and merchandise.",
"tags": [
"entertainment",
"movies",
"theme parks",
"television"
]
},
{
"id": "5",
"title": "Harley-Davidson",
"createdBy": "Mark Anderson",
"createdAt": "2024-01-10T16:12:37Z",
"modifiedAt": "2024-01-15T12:30:00Z",
"stacks": "Motorcycles, Apparel",
"contentType": "Product",
"description": "Iconic American motorcycle manufacturer known for its heavyweight motorcycles.",
"tags": [
"motorcycles",
"automotive",
"heavyweight bikes"
]
},
{
"id": "6",
"title": "Amazon",
"createdBy": "Sophia Lee",
"createdAt": "2024-01-10T17:28:54Z",
"modifiedAt": "2024-01-15T13:30:00Z",
"stacks": "E-commerce, AWS",
"contentType": "Service",
"description": "Global e-commerce and cloud computing giant.",
"tags": [
"e-commerce",
"cloud computing",
"technology",
"retail"
]
},
{
"id": "7",
"title": "Coca-Cola",
"createdBy": "Chris Miller",
"createdAt": "2024-01-10T18:45:09Z",
"modifiedAt": "2024-01-15T14:30:00Z",
"stacks": "Beverages",
"contentType": "Product",
"description": "World-renowned beverage company offering soft drinks in multiple flavors.",
"tags": [
"beverages",
"soft drinks",
"global brand"
]
},
{
"id": "8",
"title": "Red Bull",
"createdBy": "Eva Taylor",
"createdAt": "2024-01-10T19:20:33Z",
"modifiedAt": "2024-01-15T15:30:00Z",
"stacks": "Energy drinks, Media",
"contentType": "Product",
"description": "Leading energy drink brand known for its marketing and sponsorship in extreme sports.",
"tags": [
"energy drinks",
"beverages",
"sports marketing"
]
},
{
"id": "9",
"title": "IBM",
"createdBy": "Ryan Brown",
"createdAt": "2024-01-10T20:09:47Z",
"modifiedAt": "2024-01-15T16:30:00Z",
"stacks": "Cloud, AI, Hardware",
"contentType": "Service",
"description": "Global technology and consulting company known for its hardware, software, and services.",
"tags": [
"technology",
"consulting",
"hardware",
"software"
]
},
{
"id": "10",
"title": "Netflix",
"createdBy": "Olivia White",
"createdAt": "2024-01-10T21:37:15Z",
"modifiedAt": "2024-01-15T17:30:00Z",
"stacks": "Streaming, Media Production",
"contentType": "Media",
"description": "Leading streaming entertainment service offering movies and TV series.",
"tags": [
"streaming",
"entertainment",
"movies",
"television"
]
},
{
"id": "11",
"title": "Spotify",
"createdBy": "Daniel Ek",
"createdAt": "2024-02-01T10:20:30Z",
"modifiedAt": "2024-02-05T11:25:00Z",
"stacks": "Streaming, Music Technology",
"contentType": "Service",
"description": "Digital music service offering millions of songs, podcasts, and videos from artists all over the world.",
"tags": [
"music",
"streaming",
"podcasts",
"technology"
]
},
{
"id": "12",
"title": "Microsoft",
"createdBy": "Bill Gates",
"createdAt": "2024-02-02T12:30:40Z",
"modifiedAt": "2024-02-06T13:35:00Z",
"stacks": "Software, Cloud Computing, Hardware",
"contentType": "Product",
"description": "Technology company known for its software products, cloud services, and hardware devices.",
"tags": [
"software",
"cloud computing",
"technology",
"hardware"
]
},
{
"id": "13",
"title": "Tesla",
"createdBy": "Elon Musk",
"createdAt": "2024-02-03T14:40:50Z",
"modifiedAt": "2024-02-07T15:45:00Z",
"stacks": "Electric Vehicles, Energy Storage",
"contentType": "Product",
"description": "Automotive and energy company specializing in electric vehicles and sustainable energy.",
"tags": [
"electric vehicles",
"sustainable energy",
"innovation",
"technology"
]
},
{
"id": "14",
"title": "Airbnb",
"createdBy": "Brian Chesky",
"createdAt": "2024-02-04T16:50:00Z",
"modifiedAt": "2024-02-08T17:55:00Z",
"stacks": "Online Marketplace, Hospitality",
"contentType": "Service",
"description": "Online platform for lodging, primarily homestays for vacation rentals, and tourism activities.",
"tags": [
"lodging",
"travel",
"hospitality",
"marketplace"
]
},
{
"id": "15",
"title": "Samsung Electronics",
"createdBy": "Lee Byung-chul",
"createdAt": "2024-02-05T18:00:10Z",
"modifiedAt": "2024-02-09T19:05:00Z",
"stacks": "Electronics, Mobile Devices",
"contentType": "Product",
"description": "Multinational electronics company known for its mobile devices, TVs, and home appliances.",
"tags": [
"electronics",
"mobile devices",
"technology",
"home appliances"
]
},
{
"id": "16",
"title": "Adidas",
"createdBy": "Adi Dassler",
"createdAt": "2024-02-06T20:10:20Z",
"modifiedAt": "2024-02-10T21:15:00Z",
"stacks": "Athletic Wear, Footwear",
"contentType": "Product",
"description": "Designs and manufactures shoes, clothing, and accessories, being the second-largest sportswear manufacturer in the world.",
"tags": [
"athletic wear",
"footwear",
"sportswear",
"accessories"
]
},
{
"id": "17",
"title": "McDonald's",
"createdBy": "Ray Kroc",
"createdAt": "2024-02-07T22:20:30Z",
"modifiedAt": "2024-02-11T23:25:00Z",
"stacks": "Fast Food, Franchise",
"contentType": "Product",
"description": "American fast food company, known for its hamburgers, cheeseburgers, and french fries.",
"tags": [
"fast food",
"hamburgers",
"franchise",
"global brand"
]
},
{
"id": "18",
"title": "Canon",
"createdBy": "Takeshi Mitarai",
"createdAt": "2024-02-08T24:30:40Z",
"modifiedAt": "2024-02-12T01:35:00Z",
"stacks": "Imaging, Optical Products",
"contentType": "Product",
"description": "Japanese multinational corporation specializing in the manufacture of imaging and optical products.",
"tags": [
"imaging",
"photography",
"optical products",
"electronics"
]
},
{
"id": "19",
"title": "Lego",
"createdBy": "Ole Kirk Christiansen",
"createdAt": "2024-02-09T02:40:50Z",
"modifiedAt": "2024-02-13T03:45:00Z",
"stacks": "Toys, Entertainment",
"contentType": "Product",
"description": "Toy production company known for its line of plastic construction toys.",
"tags": [
"toys",
"construction",
"entertainment",
"education"
]
},
{
"id": "20",
"title": "PayPal",
"createdBy": "Peter Thiel, Max Levchin",
"createdAt": "2024-02-10T04:50:00Z",
"modifiedAt": "2024-02-14T05:55:00Z",
"stacks": "Online Payments, Financial Technology",
"contentType": "Service",
"description": "Online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods.",
"tags": [
"online payments",
"financial technology",
"money transfer",
"e-commerce"
]
},
{
"id": "21",
"title": "Intel",
"createdBy": "Robert Noyce",
"createdAt": "2024-02-11T06:00:10Z",
"modifiedAt": "2024-02-15T07:05:00Z",
"stacks": "Semiconductors, Microprocessors",
"contentType": "Product",
"description": "American multinational corporation and technology company, the world's largest semiconductor chip manufacturer.",
"tags": [
"semiconductors",
"microprocessors",
"technology",
"computing"
]
},
{
"id": "22",
"title": "Uber",
"createdBy": "Travis Kalanick",
"createdAt": "2024-02-12T08:10:20Z",
"modifiedAt": "2024-02-16T09:15:00Z",
"stacks": "Ride-Hailing, Food Delivery",
"contentType": "Service",
"description": "American technology company offering ride-hailing services, food delivery, and a freight platform.",
"tags": [
"ride-hailing",
"food delivery",
"technology",
"transportation"
]
},
{
"id": "23",
"title": "Unilever",
"createdBy": "William Hulme Lever",
"createdAt": "2024-02-13T10:20:30Z",
"modifiedAt": "2024-02-17T11:25:00Z",
"stacks": "Consumer Goods",
"contentType": "Product",
"description": "British-Dutch multinational consumer goods company, products include food, condiments, ice cream, cleaning agents, beauty products, and personal care.",
"tags": [
"consumer goods",
"food",
"beauty",
"personal care"
]
},
{
"id": "24",
"title": "Pfizer",
"createdBy": "Charles Pfizer",
"createdAt": "2024-02-14T12:30:40Z",
"modifiedAt": "2024-02-18T13:35:00Z",
"stacks": "Pharmaceuticals, Biotechnology",
"contentType": "Product",
"description": "American multinational pharmaceutical corporation, one of the world's largest pharmaceutical companies.",
"tags": [
"pharmaceuticals",
"biotechnology",
"medicine",
"healthcare"
]
},
{
"id": "25",
"title": "Sony",
"createdBy": "Akio Morita",
"createdAt": "2024-02-15T14:40:50Z",
"modifiedAt": "2024-02-19T15:45:00Z",
"stacks": "Electronics, Entertainment, Gaming",
"contentType": "Product",
"description": "Japanese multinational conglomerate corporation, one of the leading manufacturers of electronic products.",
"tags": [
"electronics",
"entertainment",
"gaming",
"technology"
]
},
{
"id": "26",
"title": "Zara",
"createdBy": "Amancio Ortega",
"createdAt": "2024-02-16T16:50:00Z",
"modifiedAt": "2024-02-20T17:55:00Z",
"stacks": "Fashion, Retail",
"contentType": "Product",
"description": "Spanish apparel retailer known for its fast fashion and trendy clothing items.",
"tags": [
"fashion",
"retail",
"clothing",
"apparel"
]
},
{
"id": "27",
"title": "Boeing",
"createdBy": "William E. Boeing",
"createdAt": "2024-02-17T18:00:10Z",
"modifiedAt": "2024-02-21T19:05:00Z",
"stacks": "Aerospace, Defense",
"contentType": "Product",
"description": "American multinational corporation that designs, manufactures, and sells airplanes, rotorcraft, rockets, satellites, and telecommunications equipment.",
"tags": [
"aerospace",
"aviation",
"defense",
"technology"
]
},
{
"id": "28",
"title": "Mastercard",
"createdBy": "Several banks",
"createdAt": "2024-02-18T20:10:20Z",
"modifiedAt": "2024-02-22T21:15:00Z",
"stacks": "Financial Services, Payment Systems",
"contentType": "Service",
"description": "American multinational financial services corporation, known for its credit, debit, and prepaid cards to process payments.",
"tags": [
"financial services",
"payment systems",
"banking",
"technology"
]
},
{
"id": "29",
"title": "IKEA",
"createdBy": "Ingvar Kamprad",
"createdAt": "2024-02-19T22:20:30Z",
"modifiedAt": "2024-02-23T23:25:00Z",
"stacks": "Furniture, Home Goods",
"contentType": "Product",
"description": "Multinational group that designs and sells ready-to-assemble furniture, kitchen appliances, and home accessories.",
"tags": [
"furniture",
"home decor",
"design",
"sustainability"
]
},
{
"id": "30",
"title": "Walmart",
"createdBy": "Sam Walton",
"createdAt": "2024-02-20T24:30:40Z",
"modifiedAt": "2024-02-24T01:35:00Z",
"stacks": "Retail, E-commerce",
"contentType": "Product",
"description": "American multinational retail corporation that operates a chain of hypermarkets, discount department stores, and grocery stores.",
"tags": [
"retail",
"e-commerce",
"shopping",
"supermarket"
]
},
{
"id": "31",
"title": "PepsiCo",
"createdBy": "Caleb Bradham",
"createdAt": "2024-03-10T12:34:56Z",
"modifiedAt": "2024-03-15T08:30:00Z",
"stacks": "Beverages, Snack Foods",
"contentType": "Product",
"description": "Global food, snack, and beverage company.",
"tags": [
"beverages",
"snack foods",
"global brand"
]
},
{
"id": "32",
"title": "Sony",
"createdBy": "Masaru Ibuka",
"createdAt": "2024-03-11T13:45:23Z",
"modifiedAt": "2024-03-15T09:30:00Z",
"stacks": "Electronics, Entertainment",
"contentType": "Product",
"description": "Multinational conglomerate corporation known for its electronic products.",
"tags": [
"electronics",
"entertainment",
"gaming",
"technology"
]
},
{
"id": "33",
"title": "Visa",
"createdBy": "Dee Hock",
"createdAt": "2024-03-12T14:56:42Z",
"modifiedAt": "2024-03-15T10:30:00Z",
"stacks": "Financial Services",
"contentType": "Service",
"description": "American multinational financial services corporation.",
"tags": [
"financial services",
"payment technology",
"global network"
]
},
{
"id": "34",
"title": "Walmart",
"createdBy": "Sam Walton",
"createdAt": "2024-03-13T15:30:18Z",
"modifiedAt": "2024-03-15T11:30:00Z",
"stacks": "Retail, E-commerce",
"contentType": "Product",
"description": "Multinational retail corporation that operates a chain of hypermarkets.",
"tags": [
"retail",
"e-commerce",
"supermarket",
"global brand"
]
},
{
"id": "35",
"title": "Mastercard",
"createdBy": "Various Banks",
"createdAt": "2024-03-14T16:12:37Z",
"modifiedAt": "2024-03-15T12:30:00Z",
"stacks": "Financial Services",
"contentType": "Service",
"description": "American multinational financial services corporation.",
"tags": [
"financial services",
"payment systems",
"technology"
]
},
{
"id": "36",
"title": "Nestlé",
"createdBy": "Henri Nestlé",
"createdAt": "2024-03-15T17:28:54Z",
"modifiedAt": "2024-03-15T13:30:00Z",
"stacks": "Food, Beverage",
"contentType": "Product",
"description": "Largest food company in the world, measured by revenues and other metrics.",
"tags": [
"food",
"beverage",
"nutrition",
"global brand"
]
},
{
"id": "37",
"title": "Oracle",
"createdBy": "Larry Ellison",
"createdAt": "2024-03-16T18:45:09Z",
"modifiedAt": "2024-03-15T14:30:00Z",
"stacks": "Software, Cloud Computing",
"contentType": "Service",
"description": "American multinational computer technology corporation.",
"tags": [
"software",
"cloud computing",
"database management"
]
},
{
"id": "38",
"title": "AT&T",
"createdBy": "Alexander Graham Bell",
"createdAt": "2024-03-17T19:20:33Z",
"modifiedAt": "2024-03-15T15:30:00Z",
"stacks": "Telecommunications, Media",
"contentType": "Service",
"description": "American multinational conglomerate holding company.",
"tags": [
"telecommunications",
"media",
"technology"
]
},
{
"id": "39",
"title": "Costco",
"createdBy": "James Sinegal",
"createdAt": "2024-03-18T20:09:47Z",
"modifiedAt": "2024-03-15T16:30:00Z",
"stacks": "Retail",
"contentType": "Product",
"description": "Multinational corporation that operates a chain of membership-only warehouse clubs.",
"tags": [
"retail",
"wholesale",
"global brand"
]
},
{
"id": "40",
"title": "Tesla",
"createdBy": "Elon Musk",
"createdAt": "2024-03-19T21:15:52Z",
"modifiedAt": "2024-03-15T17:30:00Z",
"stacks": "Automotive, Energy",
"contentType": "Product",
"description": "American electric vehicle and clean energy company.",
"tags": [
"automotive",
"electric vehicles",
"clean energy",
"innovation"
]
},
{
"id": "41",
"title": "Netflix",
"createdBy": "Reed Hastings",
"createdAt": "2024-03-20T22:04:16Z",
"modifiedAt": "2024-03-15T18:30:00Z",
"stacks": "Entertainment, Media",
"contentType": "Service",
"description": "Streaming service that offers a wide variety of award-winning TV shows, movies, anime, documentaries, and more.",
"tags": [
"entertainment",
"streaming",
"media",
"technology"
]
},
{
"id": "42",
"title": "Intel",
"createdBy": "Robert Noyce",
"createdAt": "2024-03-21T23:12:30Z",
"modifiedAt": "2024-03-15T19:30:00Z",
"stacks": "Semiconductors, Technology",
"contentType": "Product",
"description": "American multinational corporation and technology company.",
"tags": [
"semiconductors",
"technology",
"computing"
]
},
{
"id": "43",
"title": "Amazon",
"createdBy": "Jeff Bezos",
"createdAt": "2024-03-22T00:21:45Z",
"modifiedAt": "2024-03-15T20:30:00Z",
"stacks": "E-commerce, Cloud Computing",
"contentType": "Service",
"description": "American multinational technology company.",
"tags": [
"e-commerce",
"cloud computing",
"digital streaming",
"artificial intelligence"
]
},
{
"id": "44",
"title": "Google",
"createdBy": "Larry Page",
"createdAt": "2024-03-23T01:33:57Z",
"modifiedAt": "2024-03-15T21:30:00Z",
"stacks": "Technology, Internet",
"contentType": "Service",
"description": "American multinational technology company.",
"tags": [
"search engine",
"advertising",
"cloud computing",
"software"
]
},
{
"id": "45",
"title": "McDonald's",
"createdBy": "Ray Kroc",
"createdAt": "2024-03-24T02:44:18Z",
"modifiedAt": "2024-03-15T22:30:00Z",
"stacks": "Fast Food",
"contentType": "Product",
"description": "American fast food company.",
"tags": [
"fast food",
"global brand",
"franchise"
]
},
{
"id": "46",
"title": "Coca-Cola",
"createdBy": "John Stith Pemberton",
"createdAt": "2024-03-25T03:55:29Z",
"modifiedAt": "2024-03-15T23:30:00Z",
"stacks": "Beverages",
"contentType": "Product",
"description": "Carbonated soft drink manufactured by The Coca-Cola Company.",
"tags": [
"beverages",
"soft drinks",
"global brand"
]
},
{
"id": "47",
"title": "Nike",
"createdBy": "Bill Bowerman",
"createdAt": "2024-03-26T04:06:40Z",
"modifiedAt": "2024-03-16T00:30:00Z",
"stacks": "Apparel, Equipment",
"contentType": "Product",
"description": "American multinational corporation.",
"tags": [
"apparel",
"sports equipment",
"footwear"
]
},
{
"id": "48",
"title": "Microsoft",
"createdBy": "Bill Gates",
"createdAt": "2024-03-27T05:17:51Z",
"modifiedAt": "2024-03-16T01:30:00Z",
"stacks": "Software, Technology",
"contentType": "Service",
"description": "American multinational technology corporation.",
"tags": [
"software",
"technology",
"computing"
]
},
{
"id": "49",
"title": "Samsung",
"createdBy": "Lee Byung-chul",
"createdAt": "2024-03-28T06:29:02Z",
"modifiedAt": "2024-03-16T02:30:00Z",
"stacks": "Electronics, Technology",
"contentType": "Product",
"description": "South Korean multinational electronics company.",
"tags": [
"electronics",
"technology",
"innovation"
]
},
{
"id": "50",
"title": "Visa Inc.",
"createdBy": "Dee Hock",
"createdAt": "2024-03-29T07:40:13Z",
"modifiedAt": "2024-03-16T03:30:00Z",
"stacks": "Financial Services",
"contentType": "Service",
"description": "American multinational financial services corporation.",
"tags": [
"financial services",
"payment technology",
"global network"
]
},
{
"id": "51",
"title": "Patagonia",
"createdBy": "Yvon Chouinard",
"createdAt": "2024-03-01T12:10:00Z",
"modifiedAt": "2024-03-05T13:15:00Z",
"stacks": "Outdoor Clothing, Gear",
"contentType": "Product",
"description": "American retailer that sells outdoor clothing marketed as sustainable.",
"tags": [
"outdoor",
"clothing",
"sustainability",
"gear"
]
},
{
"id": "52",
"title": "Pfizer",
"createdBy": "Charles Pfizer",
"createdAt": "2024-03-02T14:20:10Z",
"modifiedAt": "2024-03-06T15:25:00Z",
"stacks": "Pharmaceuticals, Biotechnology",
"contentType": "Product",
"description": "American multinational pharmaceutical corporation.",
"tags": [
"pharmaceuticals",
"biotechnology",
"healthcare",
"medicine"
]
},
{
"id": "53",
"title": "SpaceX",
"createdBy": "Elon Musk",
"createdAt": "2024-03-03T16:30:20Z",
"modifiedAt": "2024-03-07T17:35:00Z",
"stacks": "Aerospace, Space Travel",
"contentType": "Service",
"description": "American aerospace manufacturer and space transport services company.",
"tags": [
"aerospace",
"space travel",
"technology",
"innovation"
]
},
{
"id": "54",
"title": "TikTok",
"createdBy": "Zhang Yiming",
"createdAt": "2024-03-04T18:40:30Z",
"modifiedAt": "2024-03-08T19:45:00Z",
"stacks": "Social Media, Entertainment",
"contentType": "Service",
"description": "International version of Chinese video-sharing social networking service Douyin.",
"tags": [
"social media",
"video sharing",
"entertainment",
"music"
]
},
{
"id": "55",
"title": "Toyota",
"createdBy": "Kiichiro Toyoda",
"createdAt": "2024-03-05T20:50:40Z",
"modifiedAt": "2024-03-09T21:55:00Z",
"stacks": "Automotive",
"contentType": "Product",
"description": "Japanese multinational automotive manufacturer.",
"tags": [
"automotive",
"cars",
"technology",
"manufacturing"
]
},
{
"id": "56",
"title": "Visa",
"createdBy": "Dee Hock",
"createdAt": "2024-03-06T22:00:50Z",
"modifiedAt": "2024-03-10T23:05:00Z",
"stacks": "Financial Services, Payments",
"contentType": "Service",
"description": "American multinational financial services corporation.",
"tags": [
"financial services",
"payments",
"technology",
"credit cards"
]
},
{
"id": "57",
"title": "Walmart",
"createdBy": "Sam Walton",
"createdAt": "2024-03-07T24:10:00Z",
"modifiedAt": "2024-03-11T01:15:00Z",
"stacks": "Retail, E-commerce",
"contentType": "Product",
"description": "American multinational retail corporation that operates a chain of hypermarkets.",
"tags": [
"retail",
"e-commerce",
"supermarket",
"consumer goods"
]
},
{
"id": "58",
"title": "Warner Bros.",
"createdBy": "Albert, Harry, Sam, and Jack Warner",
"createdAt": "2024-03-08T02:20:10Z",
"modifiedAt": "2024-03-12T03:25:00Z",
"stacks": "Entertainment, Media",
"contentType": "Media",
"description": "American multinational mass media and entertainment conglomerate.",
"tags": [
"entertainment",
"movies",
"television",
"media"
]
},
{
"id": "59",
"title": "Xiaomi",
"createdBy": "Lei Jun",
"createdAt": "2024-03-09T04:30:20Z",
"modifiedAt": "2024-03-13T05:35:00Z",
"stacks": "Electronics, Smartphones",
"contentType": "Product",
"description": "Chinese electronics company that makes smartphones, mobile apps, laptops, and home appliances.",
"tags": [
"electronics",
"smartphones",
"technology",
"innovation"
]
},
{
"id": "60",
"title": "YouTube",
"createdBy": "Steve Chen, Chad Hurley, and Jawed Karim",
"createdAt": "2024-03-10T06:40:30Z",
"modifiedAt": "2024-03-14T07:45:00Z",
"stacks": "Social Media, Video Sharing",
"contentType": "Service",
"description": "American online video sharing and social media platform.",
"tags": [
"social media",
"video sharing",
"entertainment",
"education"
]
},
{
"id": "61",
"title": "Zoom",
"createdBy": "Eric Yuan",
"createdAt": "2024-03-11T08:50:40Z",
"modifiedAt": "2024-03-15T09:55:00Z",
"stacks": "Telecommunications, Software",
"contentType": "Service",
"description": "American communications technology company known for its video telephony and online chat services.",
"tags": [
"telecommunications",
"software",
"video conferencing",
"communication"
]
},
{
"id": "62",
"title": "Adobe",
"createdBy": "John Warnock, Charles Geschke",
"createdAt": "2024-03-12T10:00:50Z",
"modifiedAt": "2024-03-16T11:05:00Z",
"stacks": "Software, Digital Media",
"contentType": "Service",
"description": "American multinational computer software company.",
"tags": [
"software",
"digital media",
"creativity",
"technology"
]
},
{
"id": "63",
"title": "Airbnb",
"createdBy": "Brian Chesky, Joe Gebbia, Nathan Blecharczyk",
"createdAt": "2024-03-13T12:10:00Z",
"modifiedAt": "2024-03-17T13:15:00Z",
"stacks": "Hospitality, Online Marketplace",
"contentType": "Service",
"description": "American company that operates an online marketplace for lodging, primarily homestays.",
"tags": [
"hospitality",
"lodging",
"travel",
"marketplace"
]
},
{
"id": "64",
"title": "Amazon",
"createdBy": "Jeff Bezos",
"createdAt": "2024-03-14T14:20:10Z",
"modifiedAt": "2024-03-18T15:25:00Z",
"stacks": "E-commerce, Cloud Computing",