-
Notifications
You must be signed in to change notification settings - Fork 18
/
functions.json
3616 lines (3616 loc) · 108 KB
/
functions.json
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
{
"achAccountNumber": {
"display": "ACH Account Number",
"category": "payment",
"description": "A bank account number used for Automated Clearing House transactions and electronic transfers",
"example": "491527954328",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"achRoutingNumber": {
"display": "ACH Routing Number",
"category": "payment",
"description": "Unique nine-digit code used in the U.S. for identifying the bank and processing electronic transactions",
"example": "513715684",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"actionVerb": {
"display": "Action Verb",
"category": "word",
"description": "Verb Indicating a physical or mental action",
"example": "close",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"address": {
"display": "Address",
"category": "address",
"description": "Residential location including street, city, state, country and postal code",
"example": "{\n\t\"address\": \"364 Unionsville, Norfolk, Ohio 99536\",\n\t\"street\": \"364 Unionsville\",\n\t\"city\": \"Norfolk\",\n\t\"state\": \"Ohio\",\n\t\"zip\": \"99536\",\n\t\"country\": \"Lesotho\",\n\t\"latitude\": 88.792592,\n\t\"longitude\": 174.504681\n}",
"output": "Record\u003cstring,unknown\u003e",
"content_type": "application/json",
"params": null,
"any": null
},
"adjective": {
"display": "Adjective",
"category": "word",
"description": "Word describing or modifying a noun",
"example": "genuine",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverb": {
"display": "Adverb",
"category": "word",
"description": "Word that modifies verbs, adjectives, or other adverbs",
"example": "smoothly",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbDegree": {
"display": "Adverb Degree",
"category": "word",
"description": "Adverb that indicates the degree or intensity of an action or adjective",
"example": "intensely",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbFrequencyDefinite": {
"display": "Adverb Frequency Definite",
"category": "word",
"description": "Adverb that specifies how often an action occurs with a clear frequency",
"example": "hourly",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbFrequencyIndefinite": {
"display": "Adverb Frequency Indefinite",
"category": "word",
"description": "Adverb that specifies how often an action occurs without specifying a particular frequency",
"example": "occasionally",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbManner": {
"display": "Adverb Manner",
"category": "word",
"description": "Adverb that describes how an action is performed",
"example": "stupidly",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbPhrase": {
"display": "Adverb Phrase",
"category": "word",
"description": "Phrase that modifies a verb, adjective, or another adverb, providing additional information.",
"example": "fully gladly",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbPlace": {
"display": "Adverb Place",
"category": "word",
"description": "Adverb that indicates the location or direction of an action",
"example": "east",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbTimeDefinite": {
"display": "Adverb Time Definite",
"category": "word",
"description": "Adverb that specifies the exact time an action occurs",
"example": "now",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"adverbTimeIndefinite": {
"display": "Adverb Time Indefinite",
"category": "word",
"description": "Adverb that gives a general or unspecified time frame",
"example": "already",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"animal": {
"display": "Animal",
"category": "animal",
"description": "Living creature with the ability to move, eat, and interact with its environment",
"example": "elk",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"animalType": {
"display": "Animal Type",
"category": "animal",
"description": "Type of animal, such as mammals, birds, reptiles, etc.",
"example": "amphibians",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"appAuthor": {
"display": "App Author",
"category": "app",
"description": "Person or group creating and developing an application",
"example": "Qado Energy, Inc.",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"appName": {
"display": "App Name",
"category": "app",
"description": "Software program designed for a specific purpose or task on a computer or mobile device",
"example": "Parkrespond",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"appVersion": {
"display": "App Version",
"category": "app",
"description": "Particular release of an application in Semantic Versioning format",
"example": "1.12.14",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerAlcohol": {
"display": "Beer Alcohol",
"category": "beer",
"description": "Measures the alcohol content in beer",
"example": "2.7%",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerBlg": {
"display": "Beer BLG",
"category": "beer",
"description": "Scale indicating the concentration of extract in worts",
"example": "6.4°Blg",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerHop": {
"display": "Beer Hop",
"category": "beer",
"description": "The flower used in brewing to add flavor, aroma, and bitterness to beer",
"example": "Glacier",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerIbu": {
"display": "Beer IBU",
"category": "beer",
"description": "Scale measuring bitterness of beer from hops",
"example": "29 IBU",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerMalt": {
"display": "Beer Malt",
"category": "beer",
"description": "Processed barley or other grains, provides sugars for fermentation and flavor to beer",
"example": "Munich",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerName": {
"display": "Beer Name",
"category": "beer",
"description": "Specific brand or variety of beer",
"example": "Duvel",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerStyle": {
"display": "Beer Style",
"category": "beer",
"description": "Distinct characteristics and flavors of beer",
"example": "European Amber Lager",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"beerYeast": {
"display": "Beer Yeast",
"category": "beer",
"description": "Microorganism used in brewing to ferment sugars, producing alcohol and carbonation in beer",
"example": "1388 - Belgian Strong Ale",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bird": {
"display": "Bird",
"category": "animal",
"description": "Distinct species of birds",
"example": "goose",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bitcoinAddress": {
"display": "Bitcoin Address",
"category": "payment",
"description": "Cryptographic identifier used to receive, store, and send Bitcoin cryptocurrency in a peer-to-peer network",
"example": "1lWLbxojXq6BqWX7X60VkcDIvYA",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bitcoinPrivateKey": {
"display": "Bitcoin Private Key",
"category": "payment",
"description": "Secret, secure code that allows the owner to access and control their Bitcoin holdings",
"example": "5vrbXTADWJ6sQBSYd6lLkG97jljNc0X9VPBvbVqsIH9lWOLcoqg",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"blurb": {
"display": "Blurb",
"category": "company",
"description": "Brief description or summary of a company's purpose, products, or services",
"example": "word",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"book": {
"display": "Book",
"category": "book",
"description": "Written or printed work consisting of pages bound together, covering various subjects or stories",
"example": "{\n\t\"title\": \"Anna Karenina\",\n\t\"author\": \"Toni Morrison\",\n\t\"genre\": \"Thriller\"\n}",
"output": "Record\u003cstring,string\u003e",
"content_type": "application/json",
"params": null,
"any": null
},
"bookAuthor": {
"display": "Book Author",
"category": "book",
"description": "The individual who wrote or created the content of a book",
"example": "Mark Twain",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bookGenre": {
"display": "Book Genre",
"category": "book",
"description": "Category or type of book defined by its content, style, or form",
"example": "Adventure",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bookTitle": {
"display": "Book Title",
"category": "book",
"description": "The specific name given to a book",
"example": "Hamlet",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"boolean": {
"display": "Boolean",
"category": "numbers",
"description": "Data type that represents one of two possible values, typically true or false",
"example": "true",
"output": "boolean",
"content_type": "text/plain",
"params": null,
"any": null
},
"breakfast": {
"display": "Breakfast",
"category": "food",
"description": "First meal of the day, typically eaten in the morning",
"example": "Blueberry banana happy face pancakes",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"bs": {
"display": "BS",
"category": "company",
"description": "Random bs company word",
"example": "front-end",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"buzzword": {
"display": "Buzzword",
"category": "company",
"description": "Trendy or overused term often used in business to sound impressive",
"example": "disintermediate",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"car": {
"display": "Car",
"category": "car",
"description": "Wheeled motor vehicle used for transportation",
"example": "{\n\t\"type\": \"Passenger car mini\",\n\t\"fuel\": \"Gasoline\",\n\t\"transmission\": \"Automatic\",\n\t\"brand\": \"Fiat\",\n\t\"model\": \"Freestyle Fwd\",\n\t\"year\": 1991\n}",
"output": "Record\u003cstring,unknown\u003e",
"content_type": "application/json",
"params": null,
"any": null
},
"carFuelType": {
"display": "Car Fuel Type",
"category": "car",
"description": "Type of energy source a car uses",
"example": "CNG",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"carMaker": {
"display": "Car Maker",
"category": "car",
"description": "Company or brand that manufactures and designs cars",
"example": "Nissan",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"carModel": {
"display": "Car Model",
"category": "car",
"description": "Specific design or version of a car produced by a manufacturer",
"example": "Aveo",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"carTransmissionType": {
"display": "Car Transmission Type",
"category": "car",
"description": "Mechanism a car uses to transmit power from the engine to the wheels",
"example": "Manual",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"carType": {
"display": "Car Type",
"category": "car",
"description": "Classification of cars based on size, use, or body style",
"example": "Passenger car mini",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"cat": {
"display": "Cat",
"category": "animal",
"description": "Various breeds that define different cats",
"example": "Chausie",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"celebrityActor": {
"display": "Celebrity Actor",
"category": "celebrity",
"description": "Famous person known for acting in films, television, or theater",
"example": "Brad Pitt",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"celebrityBusiness": {
"display": "Celebrity Business",
"category": "celebrity",
"description": "High-profile individual known for significant achievements in business or entrepreneurship",
"example": "Elon Musk",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"celebritySport": {
"display": "Celebrity Sport",
"category": "celebrity",
"description": "Famous athlete known for achievements in a particular sport",
"example": "Michael Phelps",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"chromeUserAgent": {
"display": "Chrome User Agent",
"category": "internet",
"description": "The specific identification string sent by the Google Chrome web browser when making requests on the internet",
"example": "Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/39.0.836.0 Mobile Safari/5312",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"city": {
"display": "City",
"category": "address",
"description": "Part of a country with significant population, often a central hub for culture and commerce",
"example": "Marcelside",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"color": {
"display": "Color",
"category": "color",
"description": "Hue seen by the eye, returns the name of the color like red or blue",
"example": "MediumOrchid",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"comment": {
"display": "Comment",
"category": "word",
"description": "Statement or remark expressing an opinion, observation, or reaction",
"example": "wow",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"company": {
"display": "Company",
"category": "company",
"description": "Designated official name of a business or organization",
"example": "Moen, Pagac and Wuckert",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"companySuffix": {
"display": "Company Suffix",
"category": "company",
"description": "Suffix at the end of a company name, indicating business structure, like 'Inc.' or 'LLC'",
"example": "Inc",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connective": {
"display": "Connective",
"category": "word",
"description": "Word used to connect words or sentences",
"example": "such as",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveCasual": {
"display": "Connective Casual",
"category": "word",
"description": "Connective word used to indicate a cause-and-effect relationship between events or actions",
"example": "an outcome of",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveComparitive": {
"display": "Connective Comparitive",
"category": "word",
"description": "Connective word used to indicate a comparison between two or more things",
"example": "in addition",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveComplaint": {
"display": "Connective Complaint",
"category": "word",
"description": "Connective word used to express dissatisfaction or complaints about a situation",
"example": "besides",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveExamplify": {
"display": "Connective Examplify",
"category": "word",
"description": "Connective word used to provide examples or illustrations of a concept or idea",
"example": "then",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveListing": {
"display": "Connective Listing",
"category": "word",
"description": "Connective word used to list or enumerate items or examples",
"example": "firstly",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"connectiveTime": {
"display": "Connective Time",
"category": "word",
"description": "Connective word used to indicate a temporal relationship between events or actions",
"example": "finally",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"country": {
"display": "Country",
"category": "address",
"description": "Nation with its own government and defined territory",
"example": "United States of America",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"countryAbbreviation": {
"display": "Country Abbreviation",
"category": "address",
"description": "Shortened 2-letter form of a country's name",
"example": "US",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCard": {
"display": "Credit Card",
"category": "payment",
"description": "Plastic card allowing users to make purchases on credit, with payment due at a later date",
"example": "{\n\t\"type\": \"UnionPay\",\n\t\"number\": \"4364599489953698\",\n\t\"exp\": \"02/24\",\n\t\"cvv\": \"300\"\n}",
"output": "Record\u003cstring,unknown\u003e",
"content_type": "application/json",
"params": null,
"any": null
},
"creditCardCVV": {
"display": "Credit Card CVV",
"category": "payment",
"description": "Three or four-digit security code on a credit card used for online and remote transactions",
"example": "513",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCardExp": {
"display": "Credit Card Exp",
"category": "payment",
"description": "Date when a credit card becomes invalid and cannot be used for transactions",
"example": "01/21",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCardExpMonth": {
"display": "Credit Card Exp Month",
"category": "payment",
"description": "Month of the date when a credit card becomes invalid and cannot be used for transactions",
"example": "11",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCardExpYear": {
"display": "Credit Card Exp Year",
"category": "payment",
"description": "Year of the date when a credit card becomes invalid and cannot be used for transactions",
"example": "28",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCardNumber": {
"display": "Credit Card Number",
"category": "payment",
"description": "Unique numerical identifier on a credit card used for making electronic payments and transactions",
"example": "4136459948995369",
"output": "string",
"content_type": "text/plain",
"params": [
{
"field": "types",
"display": "Types",
"type": "string[]",
"optional": false,
"default": "all",
"options": [
"visa",
"mastercard",
"american-express",
"diners-club",
"discover",
"jcb",
"unionpay",
"maestro",
"elo",
"hiper",
"hipercard"
],
"description": "A select number of types you want to use when generating a credit card number"
},
{
"field": "bins",
"display": "Bins",
"type": "string[]",
"optional": true,
"default": "",
"options": null,
"description": "Optional list of prepended bin numbers to pick from"
},
{
"field": "gaps",
"display": "Gaps",
"type": "boolean",
"optional": false,
"default": "false",
"options": null,
"description": "Whether or not to have gaps in number"
}
],
"any": null
},
"creditCardNumberFormatted": {
"display": "Credit Card Number Formatted",
"category": "payment",
"description": "Unique numerical identifier on a credit card used for making electronic payments and transactions",
"example": "4136-4599-4899-5369",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"creditCardType": {
"display": "Credit Card Type",
"category": "payment",
"description": "Classification of credit cards based on the issuing company",
"example": "Visa",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"currency": {
"display": "Currency",
"category": "payment",
"description": "Medium of exchange, often in the form of paper money or coins, used for trade and transactions",
"example": "{\n\t\"short\": \"IQD\",\n\t\"long\": \"Iraq Dinar\"\n}",
"output": "Record\u003cstring,string\u003e",
"content_type": "application/json",
"params": null,
"any": null
},
"currencyLong": {
"display": "Currency Long",
"category": "payment",
"description": "Complete name of a specific currency used for official identification in financial transactions",
"example": "United States Dollar",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"currencyShort": {
"display": "Currency Short",
"category": "payment",
"description": "Short 3-letter word used to represent a specific currency",
"example": "USD",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"cusip": {
"display": "CUSIP",
"category": "finance",
"description": "Unique identifier for securities, especially bonds, in the United States and Canada",
"example": "38259P508",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"databaseError": {
"display": "Database error",
"category": "error",
"description": "A problem or issue encountered while accessing or managing a database",
"example": "sql error",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"date": {
"display": "Date",
"category": "time",
"description": "Representation of a specific day, month, and year, often used for chronological reference",
"example": "2006-01-02T15:04:05Z07:00",
"output": "string",
"content_type": "text/plain",
"params": [
{
"field": "format",
"display": "Format",
"type": "string",
"optional": false,
"default": "RFC3339",
"options": [
"ANSIC",
"UnixDate",
"RubyDate",
"RFC822",
"RFC822Z",
"RFC850",
"RFC1123",
"RFC1123Z",
"RFC3339",
"RFC3339Nano"
],
"description": "Date time string format output. You may also use golang time format or java time format"
}
],
"any": null
},
"dateRange": {
"display": "DateRange",
"category": "time",
"description": "Random date between two ranges",
"example": "2006-01-02T15:04:05Z07:00",
"output": "string",
"content_type": "text/plain",
"params": [
{
"field": "startdate",
"display": "Start Date",
"type": "string",
"optional": false,
"default": "1970-01-01",
"options": null,
"description": "Start date time string"
},
{
"field": "enddate",
"display": "End Date",
"type": "string",
"optional": false,
"default": "2024-09-05",
"options": null,
"description": "End date time string"
},
{
"field": "format",
"display": "Format",
"type": "string",
"optional": false,
"default": "yyyy-MM-dd",
"options": null,
"description": "Date time string format"
}
],
"any": null
},
"day": {
"display": "Day",
"category": "time",
"description": "24-hour period equivalent to one rotation of Earth on its axis",
"example": "12",
"output": "number",
"content_type": "text/plain",
"params": null,
"any": null
},
"demonstrativeAdjective": {
"display": "Demonstrative Adjective",
"category": "word",
"description": "Adjective used to point out specific things",
"example": "this",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"descriptiveAdjective": {
"display": "Descriptive Adjective",
"category": "word",
"description": "Adjective that provides detailed characteristics about a noun",
"example": "brave",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"dessert": {
"display": "Dessert",
"category": "food",
"description": "Sweet treat often enjoyed after a meal",
"example": "French napoleons",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"dice": {
"display": "Dice",
"category": "game",
"description": "Small, cube-shaped objects used in games of chance for random outcomes",
"example": "[5, 2, 3]",
"output": "number[]",
"content_type": "text/plain",
"params": [
{
"field": "numdice",
"display": "Number of Dice",
"type": "number",
"optional": false,
"default": "1",
"options": null,
"description": "Number of dice to roll"
},
{
"field": "sides",
"display": "Number of Sides",
"type": "number[]",
"optional": false,
"default": "[6]",
"options": null,
"description": "Number of sides on each dice"
}
],
"any": null
},
"digit": {
"display": "Digit",
"category": "strings",
"description": "Numerical symbol used to represent numbers",
"example": "0",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"digitN": {
"display": "DigitN",
"category": "strings",
"description": "string of length N consisting of ASCII digits",
"example": "0136459948",
"output": "string",
"content_type": "text/plain",
"params": [
{
"field": "count",
"display": "Count",
"type": "number",
"optional": false,
"default": "",
"options": null,
"description": "Number of digits to generate"
}
],
"any": null
},
"dinner": {
"display": "Dinner",
"category": "food",
"description": "Evening meal, typically the day's main and most substantial meal",
"example": "Wild addicting dip",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"dog": {
"display": "Dog",
"category": "animal",
"description": "Various breeds that define different dogs",
"example": "Norwich Terrier",
"output": "string",
"content_type": "text/plain",
"params": null,
"any": null
},
"domainName": {