seedfaker-core 0.2.0-alpha.6

Core library for seedfaker — deterministic synthetic generator for realistic, correlated, and noisy test records
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
// AUTO-GENERATED by tools/gen-fields.py — DO NOT EDIT
// Source: rust/core/fields.yaml

use crate::field::Field;
use crate::gen;

pub static REGISTRY: &[Field] = &[
    // core
    Field::new(
        "f00001",
        "integer",
        "core",
        "Random whole number in configurable range",
        gen::integer::gen,
    ),
    Field::new("f00002", "float", "core", "Decimal number with 2-digit precision", gen::float::gen),
    Field::new(
        "f00003",
        "boolean",
        "core",
        "true or false with equal probability",
        gen::boolean::gen,
    ),
    Field::new("f00004", "digit", "core", "Single decimal digit [0-9]", gen::digit::gen),
    Field::new("f00005", "bit", "core", "Binary value, 0 or 1", gen::bit::gen),
    Field::new("f00006", "trit", "core", "Ternary digit (-1, 0, or 1)", gen::trit::gen),
    Field::new(
        "f00007",
        "enum",
        "core",
        "Random pick from values (enum:a,b,c) with weights (enum:a=3,b=1)",
        gen::enum_::gen,
    ),
    Field::new(
        "f00008",
        "serial",
        "core",
        "Zero-based record counter (0, 1, 2, ...)",
        gen::serial::gen,
    ),
    // text
    Field::new("f00009", "letter", "text", "Single ASCII letter [a-zA-Z]", gen::letter::gen),
    Field::new(
        "f00011",
        "trigram",
        "text",
        "Pronounceable three-letter syllable (baf, kel, zur)",
        gen::trigram::gen,
    ),
    Field::new(
        "f00012",
        "digits",
        "text",
        "Numeric digit string (digits:4 = 0469, digits:6:100..500 = 000342)",
        gen::digits::gen,
    ),
    Field::new(
        "f00013",
        "letters",
        "text",
        "Alphabetic string (letters:8 = kZmPqRtY)",
        gen::letters::gen,
    ),
    Field::new(
        "f00014",
        "alnum",
        "text",
        "Alphanumeric string (alnum:6 = xK7m2B)",
        gen::alnum::gen,
    ),
    Field::new(
        "f00015",
        "base64",
        "text",
        "Base64-encoded random bytes (base64:16 = aGVsbG8gd29y)",
        gen::base64::gen,
    ),
    Field::new(
        "f00016",
        "hex",
        "text",
        "Hexadecimal string (hex:4 = 0f3a, hex:8 = 0f3a7b2e)",
        gen::hex::gen,
    ),
    Field::new("f00017", "word", "text", "English-like word from vocabulary pool", gen::word::gen),
    Field::new(
        "f00018",
        "message",
        "text",
        "Multi-word natural language sentence",
        gen::message::gen,
    ),
    // daily
    Field::new("f00019", "emoji", "daily", "Single Unicode emoji character", gen::emoji::gen),
    // core
    Field::new(
        "f00020",
        "color",
        "core",
        "Color value: named (maroon), hex (#ff8800), or RGB components (120, 40, 200)",
        gen::color::gen,
    ),
    Field::new(
        "f00021",
        "uuid",
        "core",
        "Version 4 UUID [xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx]",
        gen::uuid::gen,
    ),
    // daily
    Field::new(
        "f00022",
        "bz",
        "daily",
        "Corporate buzzword or jargon phrase (synergy, leverage)",
        gen::bz::gen,
    ),
    Field::new("f00023", "dice", "daily", "Six-sided die roll result, 1 through 6", gen::dice::gen),
    Field::new(
        "f00024",
        "excuse",
        "daily",
        "Humorous developer excuse for being late or missing a deadline",
        gen::excuse::gen,
    ),
    Field::new(
        "f00025",
        "mball",
        "daily",
        "Magic 8-Ball fortune response (Yes definitely, Ask again later)",
        gen::eight_ball::gen,
    ),
    // time
    Field::new(
        "f00026",
        "timestamp",
        "time",
        "ISO 8601 datetime with timezone (2024-03-15T09:30:00Z)",
        gen::timestamp::gen,
    ),
    Field::new(
        "f00027",
        "date",
        "time",
        "Calendar date in locale-specific format (2024-03-15)",
        gen::date::gen,
    ),
    // person
    Field::new(
        "f00028",
        "name",
        "person",
        "Full person name with first and last components",
        gen::name::gen,
    ),
    Field::new(
        "f00029",
        "first-name",
        "person",
        "Given name from locale-aware dictionary",
        gen::first_name::gen,
    ),
    Field::new(
        "f00030",
        "last-name",
        "person",
        "Family name from locale-aware dictionary",
        gen::last_name::gen,
    ),
    Field::new(
        "f00031",
        "middle-name",
        "person",
        "Middle name or patronymic from locale-aware dictionary",
        gen::middle_name::gen,
    ),
    Field::new(
        "f00032",
        "birthdate",
        "person",
        "Date of birth with weighted age distribution",
        gen::birthdate::gen,
    ),
    Field::new(
        "f00213",
        "age",
        "person",
        "Age (18-100), weighted demographic distribution",
        gen::age::gen,
    ),
    Field::new(
        "f00033",
        "gender",
        "person",
        "Gender label (male, female, non-binary)",
        gen::gender::gen,
    ),
    Field::new(
        "f00034",
        "username",
        "person",
        "Clean platform handle [a-z0-9_]",
        gen::username::gen,
    ),
    Field::new(
        "f00035",
        "login-name",
        "person",
        "System login identifier, typically firstname.lastname",
        gen::login_name::gen,
    ),
    Field::new(
        "f00036",
        "social-handle",
        "person",
        "Social media display name with @ prefix (@cooluser99)",
        gen::social_handle::gen,
    ),
    Field::new(
        "f00212",
        "nickname",
        "person",
        "Creative alias unrelated to real name (darkwolf42, swiftcoder)",
        gen::nickname::gen,
    ),
    Field::new(
        "f00037",
        "biometric-id",
        "person",
        "Opaque biometric template reference [hex, 32 bytes]",
        gen::biometric_id::gen,
    ),
    Field::new(
        "f00038",
        "student-id",
        "person",
        "University or school student identifier [alphanumeric]",
        gen::student_id::gen,
    ),
    // contact
    Field::new(
        "f00039",
        "email",
        "contact",
        "Email with locale-aware name and domain",
        gen::email::gen,
    ),
    Field::new(
        "f00040",
        "phone",
        "contact",
        "Phone number with country code and locale formatting",
        gen::phone::gen,
    ),
    Field::new(
        "f00041",
        "address",
        "contact",
        "Full mailing address with street, city, state, and postal code",
        gen::address::gen,
    ),
    Field::new(
        "f00042",
        "street-address",
        "contact",
        "Street line with number and street name (742 Evergreen Terrace)",
        gen::street_address::gen,
    ),
    Field::new(
        "f00043",
        "city",
        "contact",
        "Real city name from weighted population data",
        gen::city::gen,
    ),
    Field::new(
        "f00044",
        "state",
        "contact",
        "US state or equivalent administrative region name",
        gen::state::gen,
    ),
    Field::new(
        "f00045",
        "postal-code",
        "contact",
        "ZIP or postal code matching locale format",
        gen::postal_code::gen,
    ),
    Field::new(
        "f00046",
        "country",
        "contact",
        "Full country name from ISO 3166 list",
        gen::country::gen,
    ),
    // location
    Field::new(
        "f00047",
        "latitude",
        "location",
        "Locale-aware geographic latitude, 4 decimal places",
        gen::latitude::gen,
    ),
    Field::new(
        "f00048",
        "longitude",
        "location",
        "Locale-aware geographic longitude, 4 decimal places",
        gen::longitude::gen,
    ),
    Field::new(
        "f00049",
        "country-code",
        "location",
        "ISO 3166-1 alpha-2 country code (US, DE, JP)",
        gen::country_code::gen,
    ),
    Field::new(
        "f00050",
        "phone-code",
        "location",
        "International dialing prefix (+1, +44, +81)",
        gen::phone_code::gen,
    ),
    Field::new(
        "f00051",
        "language-code",
        "location",
        "ISO 639-1 two-letter language code (en, fr, ja)",
        gen::language_code::gen,
    ),
    Field::new(
        "f00052",
        "locale-code",
        "location",
        "IETF BCP 47 locale tag (en-US, pt-BR, zh-Hans)",
        gen::locale_code::gen,
    ),
    Field::new(
        "f00053",
        "timezone",
        "location",
        "IANA timezone identifier (America/New_York, Europe/Berlin)",
        gen::timezone::gen,
    ),
    // finance
    Field::new(
        "f00054",
        "credit-card",
        "finance",
        "Valid-checksum card number with BIN prefix [16 digits]",
        gen::credit_card::gen,
    ),
    Field::new("f00055", "cvv", "finance", "Card verification value [3-4 digits]", gen::cvv::gen),
    Field::new(
        "f00056",
        "iban",
        "finance",
        "International Bank Account Number with valid check digits",
        gen::iban::gen,
    ),
    Field::new(
        "f00057",
        "swift-bic",
        "finance",
        "SWIFT/BIC bank identifier code [8 or 11 chars]",
        gen::swift_bic::gen,
    ),
    Field::new(
        "f00058",
        "routing-number",
        "finance",
        "US ABA routing transit number [9 digits, valid checksum]",
        gen::routing_number::gen,
    ),
    Field::new(
        "f00059",
        "bank-account",
        "finance",
        "Bank account number with locale-appropriate length",
        gen::bank_account::gen,
    ),
    Field::new(
        "f00060",
        "tax-id",
        "finance",
        "US Employer Identification Number [NN-NNNNNNN]",
        gen::tax_id::gen,
    ),
    Field::new(
        "f00061",
        "amount",
        "finance",
        "Monetary value with configurable currency and decimal format",
        gen::amount::gen,
    ),
    Field::new(
        "f00062",
        "currency-code",
        "finance",
        "ISO 4217 three-letter currency code (USD, EUR, GBP)",
        gen::currency_code::gen,
    ),
    Field::new(
        "f00063",
        "currency-symbol",
        "finance",
        "Unicode currency glyph ($, EUR, GBP, JPY)",
        gen::currency_symbol::gen,
    ),
    // auth
    Field::new(
        "f00064",
        "password",
        "auth",
        "Password with configurable length (password:12 for exact)",
        gen::password::gen,
    ),
    Field::new(
        "f00065",
        "jwt",
        "auth",
        "JSON Web Token with valid header.payload.signature structure",
        gen::jwt::gen,
    ),
    Field::new(
        "f00066",
        "bearer-token",
        "auth",
        "OAuth2 bearer token, opaque [base64url, 32+ bytes]",
        gen::bearer_token::gen,
    ),
    Field::new(
        "f00067",
        "api-key",
        "auth",
        "Generic API key [alphanumeric, 32-48 chars]",
        gen::api_key::gen,
    ),
    Field::new(
        "f00068",
        "totp-secret",
        "auth",
        "TOTP shared secret [base32, 16+ chars]",
        gen::totp_secret::gen,
    ),
    Field::new(
        "f00069",
        "oauth-client-secret",
        "auth",
        "OAuth2 client secret [alphanumeric, 40 chars]",
        gen::oauth_client_secret::gen,
    ),
    Field::new(
        "f00070",
        "aws-access-key",
        "auth",
        "AWS access key ID [AKIA...]",
        gen::aws_access_key::gen,
    ),
    Field::new(
        "f00071",
        "aws-secret-key",
        "auth",
        "AWS secret access key [base64, 40 chars]",
        gen::aws_secret_key::gen,
    ),
    Field::new(
        "f00072",
        "stripe-key",
        "auth",
        "Stripe API key with environment prefix [sk_live_..., sk_test_...]",
        gen::stripe_key::gen,
    ),
    Field::new(
        "f00073",
        "github-pat",
        "auth",
        "GitHub personal access token [ghp_...]",
        gen::github_pat::gen,
    ),
    Field::new(
        "f00074",
        "gitlab-token",
        "auth",
        "GitLab personal or project token [glpat-...]",
        gen::gitlab_token::gen,
    ),
    Field::new("f00075", "openai-key", "auth", "OpenAI API key [sk-...]", gen::openai_key::gen),
    Field::new(
        "f00076",
        "sendgrid-key",
        "auth",
        "SendGrid API key [SG....]",
        gen::sendgrid_key::gen,
    ),
    Field::new("f00077", "twilio-sid", "auth", "Twilio Account SID [AC...]", gen::twilio_sid::gen),
    Field::new(
        "f00078",
        "twilio-token",
        "auth",
        "Twilio auth token [hex, 32 chars]",
        gen::twilio_token::gen,
    ),
    Field::new(
        "f00079",
        "slack-bot-token",
        "auth",
        "Slack bot OAuth token [xoxb-...]",
        gen::slack_bot_token::gen,
    ),
    Field::new(
        "f00080",
        "slack-user-token",
        "auth",
        "Slack user OAuth token [xoxp-...]",
        gen::slack_user_token::gen,
    ),
    Field::new(
        "f00081",
        "datadog-key",
        "auth",
        "Datadog API or application key [hex, 32 chars]",
        gen::datadog_key::gen,
    ),
    Field::new(
        "f00082",
        "sentry-dsn",
        "auth",
        "Sentry Data Source Name URL with project ID",
        gen::sentry_dsn::gen,
    ),
    Field::new(
        "f00083",
        "vault-token",
        "auth",
        "HashiCorp Vault access token [hvs....]",
        gen::vault_token::gen,
    ),
    Field::new(
        "f00084",
        "npm-token",
        "auth",
        "npm registry auth token [npm_...]",
        gen::npm_token::gen,
    ),
    Field::new(
        "f00085",
        "vercel-token",
        "auth",
        "Vercel deployment token [alphanumeric, 24 chars]",
        gen::vercel_token::gen,
    ),
    Field::new(
        "f00086",
        "supabase-key",
        "auth",
        "Supabase anon or service-role JWT key",
        gen::supabase_key::gen,
    ),
    Field::new(
        "f00087",
        "telegram-token",
        "auth",
        "Telegram Bot API token [NNNNNNNNNN:AAxx...]",
        gen::telegram_token::gen,
    ),
    Field::new(
        "f00088",
        "discord-webhook",
        "auth",
        "Discord webhook URL with token path",
        gen::discord_webhook::gen,
    ),
    Field::new(
        "f00089",
        "gcp-key",
        "auth",
        "Google Cloud Platform API key [AIza...]",
        gen::gcp_key::gen,
    ),
    Field::new(
        "f00090",
        "azure-key",
        "auth",
        "Microsoft Azure subscription or service key [base64]",
        gen::azure_key::gen,
    ),
    Field::new(
        "f00091",
        "cloudflare-token",
        "auth",
        "Cloudflare API token [alphanumeric, 40 chars]",
        gen::cloudflare_token::gen,
    ),
    Field::new(
        "f00092",
        "pagerduty-key",
        "auth",
        "PagerDuty API key [alphanumeric, 20 chars]",
        gen::pagerduty_key::gen,
    ),
    Field::new(
        "f00093",
        "newrelic-key",
        "auth",
        "New Relic API key [NRAK-...]",
        gen::newrelic_key::gen,
    ),
    Field::new(
        "f00094",
        "splunk-token",
        "auth",
        "Splunk HEC auth token [UUID format]",
        gen::splunk_token::gen,
    ),
    Field::new(
        "f00095",
        "heroku-key",
        "auth",
        "Heroku API key [UUID format]",
        gen::heroku_key::gen,
    ),
    Field::new(
        "f00096",
        "firebase-key",
        "auth",
        "Firebase Web API key [AIza...]",
        gen::firebase_key::gen,
    ),
    Field::new(
        "f00097",
        "ssh-private-key",
        "auth",
        "PEM-encoded SSH private key block (RSA or Ed25519)",
        gen::ssh_private_key::gen,
    ),
    Field::new(
        "f00098",
        "ssh-public-key",
        "auth",
        "OpenSSH public key line (ssh-rsa ..., ssh-ed25519 ...)",
        gen::ssh_public_key::gen,
    ),
    Field::new(
        "f00099",
        "connection-string",
        "auth",
        "Database connection URI with credentials (postgres://user:pass@...)",
        gen::connection_string::gen,
    ),
    Field::new(
        "f00100",
        "anthropic-key",
        "auth",
        "Anthropic API key [sk-ant-...]",
        gen::anthropic_key::gen,
    ),
    Field::new(
        "f00101",
        "session-id",
        "auth",
        "Opaque session identifier [base64url, 32+ bytes]",
        gen::session_id::gen,
    ),
    Field::new(
        "f00102",
        "passkey-id",
        "auth",
        "WebAuthn passkey credential ID [base64url]",
        gen::passkey_id::gen,
    ),
    Field::new(
        "f00103",
        "facebook-token",
        "auth",
        "Facebook/Meta Graph API access token [EAA...]",
        gen::facebook_token::gen,
    ),
    Field::new(
        "f00104",
        "google-token",
        "auth",
        "Google OAuth2 access token [ya29....]",
        gen::google_token::gen,
    ),
    Field::new(
        "f00105",
        "apple-token",
        "auth",
        "Apple Sign-In JWT identity token",
        gen::apple_token::gen,
    ),
    Field::new(
        "f00106",
        "refresh-token",
        "auth",
        "OAuth2 refresh token [opaque, 64+ chars]",
        gen::refresh_token::gen,
    ),
    Field::new(
        "f00107",
        "csrf-token",
        "auth",
        "Cross-site request forgery protection token [hex, 32 bytes]",
        gen::csrf_token::gen,
    ),
    Field::new(
        "f00108",
        "basic-auth",
        "auth",
        "HTTP Basic auth header value [base64(user:pass)]",
        gen::basic_auth::gen,
    ),
    // gov-id
    Field::new("f00109", "ssn", "gov-id", "US Social Security Number [NNN-NN-NNNN]", gen::ssn::gen),
    Field::new(
        "f00110",
        "passport",
        "gov-id",
        "Passport number with country-appropriate format",
        gen::passport::gen,
    ),
    Field::new(
        "f00111",
        "drivers-license",
        "gov-id",
        "US driver's license number, state-format-aware",
        gen::drivers_license::gen,
    ),
    Field::new(
        "f00112",
        "national-id",
        "gov-id",
        "Generic national identity number for configurable country",
        gen::national_id::gen,
    ),
    Field::new(
        "f00113",
        "cpf",
        "gov-id",
        "Brazil Cadastro de Pessoa Fisica [NNN.NNN.NNN-NN]",
        gen::cpf::gen,
    ),
    Field::new(
        "f00114",
        "sin",
        "gov-id",
        "Canada Social Insurance Number [NNN-NNN-NNN]",
        gen::sin::gen,
    ),
    Field::new("f00115", "tfn", "gov-id", "Australia Tax File Number [NNN NNN NNN]", gen::tfn::gen),
    Field::new(
        "f00116",
        "nino",
        "gov-id",
        "UK National Insurance Number [AA NNNNNN A]",
        gen::nino::gen,
    ),
    Field::new(
        "f00117",
        "nhs-number",
        "gov-id",
        "UK National Health Service number [NNN NNN NNNN]",
        gen::nhs_number::gen,
    ),
    Field::new(
        "f00118",
        "nir",
        "gov-id",
        "France national ID registration number [13 digits + key]",
        gen::nir::gen,
    ),
    Field::new(
        "f00119",
        "codice-fiscale",
        "gov-id",
        "Italy fiscal code [16 alphanumeric chars]",
        gen::codice_fiscale::gen,
    ),
    Field::new(
        "f00120",
        "dni",
        "gov-id",
        "Spain Documento Nacional de Identidad [8 digits + letter]",
        gen::dni::gen,
    ),
    Field::new(
        "f00121",
        "nie",
        "gov-id",
        "Spain foreigner identification number [X/Y/Z + 7 digits + letter]",
        gen::nie::gen,
    ),
    Field::new(
        "f00122",
        "bsn",
        "gov-id",
        "Netherlands Burgerservicenummer [9 digits]",
        gen::bsn::gen,
    ),
    Field::new(
        "f00123",
        "personnummer",
        "gov-id",
        "Sweden personal identity number [YYYYMMDD-NNNN]",
        gen::personnummer::gen,
    ),
    Field::new(
        "f00124",
        "steuer-id",
        "gov-id",
        "Germany tax identification number [11 digits]",
        gen::steuer_id::gen,
    ),
    Field::new(
        "f00125",
        "cuil",
        "gov-id",
        "Argentina labor identification code [NN-NNNNNNNN-N]",
        gen::cuil::gen,
    ),
    Field::new(
        "f00126",
        "jmbg",
        "gov-id",
        "Former Yugoslavia unique master citizen number [13 digits]",
        gen::jmbg::gen,
    ),
    Field::new(
        "f00127",
        "tc-kimlik",
        "gov-id",
        "Turkey national identity number [11 digits]",
        gen::tc_kimlik::gen,
    ),
    Field::new(
        "f00128",
        "pesel",
        "gov-id",
        "Poland national identification number [11 digits]",
        gen::pesel::gen,
    ),
    Field::new(
        "f00129",
        "curp",
        "gov-id",
        "Mexico population registry key [18 alphanumeric chars]",
        gen::curp::gen,
    ),
    Field::new(
        "f00130",
        "rut",
        "gov-id",
        "Chile unique tax role number [NN.NNN.NNN-D]",
        gen::rut::gen,
    ),
    Field::new(
        "f00131",
        "inn",
        "gov-id",
        "Russia taxpayer identification number [10 or 12 digits]",
        gen::inn::gen,
    ),
    Field::new(
        "f00132",
        "ipn",
        "gov-id",
        "Ukraine individual tax number [10 digits]",
        gen::ipn::gen,
    ),
    Field::new("f00133", "abn", "gov-id", "Australia Business Number [11 digits]", gen::abn::gen),
    Field::new(
        "f00134",
        "cnpj",
        "gov-id",
        "Brazil corporate taxpayer registry [NN.NNN.NNN/NNNN-NN]",
        gen::cnpj::gen,
    ),
    Field::new(
        "f00135",
        "oib",
        "gov-id",
        "Croatia personal identification number [11 digits]",
        gen::oib::gen,
    ),
    Field::new(
        "f00136",
        "amka",
        "gov-id",
        "Greece social security number [11 digits]",
        gen::amka::gen,
    ),
    Field::new(
        "f00137",
        "rodne-cislo",
        "gov-id",
        "Czech/Slovakia birth number [NNNNNN/NNNN]",
        gen::rodne_cislo::gen,
    ),
    Field::new(
        "f00138",
        "szemelyi-szam",
        "gov-id",
        "Hungary personal identification number [N-NNNNNN-A]",
        gen::szemelyi_szam::gen,
    ),
    Field::new(
        "f00139",
        "hetu",
        "gov-id",
        "Finland personal identity code [DDMMYY-NNNC]",
        gen::hetu::gen,
    ),
    Field::new(
        "f00140",
        "cpr",
        "gov-id",
        "Denmark civil registration number [DDMMYY-NNNN]",
        gen::cpr::gen,
    ),
    Field::new(
        "f00141",
        "fodselsnummer",
        "gov-id",
        "Norway national identity number [11 digits]",
        gen::fodselsnummer::gen,
    ),
    Field::new(
        "f00142",
        "pps",
        "gov-id",
        "Ireland Personal Public Service number [NNNNNNNAA]",
        gen::pps::gen,
    ),
    Field::new(
        "f00143",
        "emso",
        "gov-id",
        "Slovenia unique master citizen number [13 digits]",
        gen::emso::gen,
    ),
    Field::new(
        "f00144",
        "egn",
        "gov-id",
        "Bulgaria Unified Civil Number [10 digits]",
        gen::egn::gen,
    ),
    Field::new(
        "f00145",
        "idnp",
        "gov-id",
        "Moldova personal identification number [13 digits]",
        gen::idnp::gen,
    ),
    Field::new(
        "f00146",
        "health-card",
        "gov-id",
        "Provincial health insurance card number (Canada)",
        gen::health_card::gen,
    ),
    Field::new(
        "f00147",
        "cedula",
        "gov-id",
        "Colombia/Ecuador/Venezuela national ID card number",
        gen::cedula::gen,
    ),
    Field::new(
        "f00148",
        "aadhaar",
        "gov-id",
        "India unique identity number [NNNN NNNN NNNN]",
        gen::aadhaar::gen,
    ),
    Field::new(
        "f00149",
        "pan",
        "gov-id",
        "India Permanent Account Number [AAAAA9999A]",
        gen::pan::gen,
    ),
    Field::new(
        "f00150",
        "cccd",
        "gov-id",
        "Vietnam citizen identity card number [12 digits]",
        gen::cccd::gen,
    ),
    Field::new(
        "f00151",
        "shenfenzheng",
        "gov-id",
        "China resident identity card number [18 digits]",
        gen::shenfenzheng::gen,
    ),
    // internet
    Field::new(
        "f00152",
        "ip",
        "internet",
        "IPv4 address in dotted-decimal notation (192.168.1.42)",
        gen::ip::gen,
    ),
    Field::new(
        "f00153",
        "ipv6",
        "internet",
        "Full IPv6 address [8 colon-separated hextets]",
        gen::ipv6::gen,
    ),
    Field::new("f00154", "mac", "internet", "MAC address [AA:BB:CC:DD:EE:FF]", gen::mac::gen),
    Field::new(
        "f00155",
        "url",
        "internet",
        "Well-formed URL with scheme, host, and path",
        gen::url::gen,
    ),
    Field::new(
        "f00156",
        "auth-url",
        "internet",
        "URL with embedded credentials (scheme://user:pass@host/path)",
        gen::auth_url::gen,
    ),
    Field::new(
        "f00157",
        "internal-url",
        "internet",
        "Private-network URL targeting RFC 1918 or localhost",
        gen::internal_url::gen,
    ),
    Field::new(
        "f00158",
        "dns-record",
        "internet",
        "DNS resource record line (A, AAAA, CNAME, MX)",
        gen::dns_record::gen,
    ),
    Field::new(
        "f00159",
        "browser-cookie",
        "internet",
        "HTTP Set-Cookie header value with name, value, and attributes",
        gen::browser_cookie::gen,
    ),
    Field::new(
        "f00160",
        "user-agent",
        "internet",
        "Browser or bot User-Agent header string",
        gen::user_agent::gen,
    ),
    Field::new(
        "f00161",
        "mime-type",
        "internet",
        "IANA media type (application/json, image/png)",
        gen::mime_type::gen,
    ),
    Field::new(
        "f00162",
        "http-method",
        "internet",
        "HTTP request method (GET, POST, PUT, DELETE)",
        gen::http_method::gen,
    ),
    Field::new(
        "f00163",
        "http-status",
        "internet",
        "HTTP response status code with reason (200 OK, 404 Not Found)",
        gen::http_status::gen,
    ),
    Field::new(
        "f00214",
        "port",
        "internet",
        "TCP/UDP port number with weighted service distribution",
        gen::port::gen,
    ),
    Field::new(
        "f00215",
        "latency",
        "internet",
        "Response latency in milliseconds, log-normal distribution (1-30000)",
        gen::latency::gen,
    ),
    Field::new(
        "f00164",
        "image-url",
        "internet",
        "Placeholder image URL with configurable aspect ratio",
        gen::image_url::gen,
    ),
    Field::new(
        "f00165",
        "twitter-url",
        "internet",
        "X/Twitter profile or post URL (https://x.com/...)",
        gen::twitter_url::gen,
    ),
    Field::new(
        "f00166",
        "linkedin-url",
        "internet",
        "LinkedIn profile URL (https://linkedin.com/in/...)",
        gen::linkedin_url::gen,
    ),
    Field::new(
        "f00167",
        "facebook-url",
        "internet",
        "Facebook profile URL (https://facebook.com/...)",
        gen::facebook_url::gen,
    ),
    Field::new(
        "f00168",
        "instagram-url",
        "internet",
        "Instagram profile URL (https://instagram.com/...)",
        gen::instagram_url::gen,
    ),
    Field::new(
        "f00169",
        "github-url",
        "internet",
        "GitHub user or repo URL (https://github.com/...)",
        gen::github_url::gen,
    ),
    Field::new(
        "f00170",
        "telegram-url",
        "internet",
        "Telegram profile or invite URL (https://t.me/...)",
        gen::telegram_url::gen,
    ),
    Field::new(
        "f00171",
        "youtube-url",
        "internet",
        "YouTube video or channel URL (https://youtube.com/...)",
        gen::youtube_url::gen,
    ),
    Field::new(
        "f00172",
        "webhook-url",
        "internet",
        "Generic webhook endpoint URL with token path",
        gen::webhook_url::gen,
    ),
    // blockchain
    Field::new(
        "f00173",
        "btc-address",
        "blockchain",
        "Bitcoin address, P2PKH or Bech32 format (1..., bc1...)",
        gen::btc_address::gen,
    ),
    Field::new(
        "f00174",
        "eth-address",
        "blockchain",
        "Ethereum address with EIP-55 checksum [0x + 40 hex chars]",
        gen::eth_address::gen,
    ),
    Field::new(
        "f00175",
        "sol-address",
        "blockchain",
        "Solana base58-encoded public key [32-44 chars]",
        gen::sol_address::gen,
    ),
    Field::new(
        "f00176",
        "tx-hash",
        "blockchain",
        "Blockchain transaction hash [hex, 64 chars]",
        gen::tx_hash::gen,
    ),
    Field::new(
        "f00177",
        "pgp-fingerprint",
        "blockchain",
        "PGP key fingerprint [40 hex chars, space-grouped]",
        gen::pgp_fingerprint::gen,
    ),
    // organization
    Field::new(
        "f00178",
        "company-name",
        "organization",
        "Business name with optional suffix (Inc, LLC, GmbH)",
        gen::company_name::gen,
    ),
    Field::new(
        "f00179",
        "ein",
        "organization",
        "US Employer Identification Number [NN-NNNNNNN]",
        gen::ein::gen,
    ),
    Field::new(
        "f00180",
        "vat-number",
        "organization",
        "EU Value Added Tax identification number with country prefix",
        gen::vat_number::gen,
    ),
    Field::new(
        "f00181",
        "duns",
        "organization",
        "Dun & Bradstreet business identifier [9 digits]",
        gen::duns::gen,
    ),
    Field::new(
        "f00182",
        "lei",
        "organization",
        "Legal Entity Identifier [20 alphanumeric chars]",
        gen::lei::gen,
    ),
    Field::new(
        "f00183",
        "job-title",
        "organization",
        "Professional role title (Senior Engineer, Product Manager)",
        gen::job_title::gen,
    ),
    Field::new(
        "f00184",
        "ldap-dn",
        "organization",
        "LDAP distinguished name (cn=John,ou=Users,dc=example,dc=com)",
        gen::ldap_dn::gen,
    ),
    Field::new(
        "f00185",
        "employee-id",
        "organization",
        "Internal employee identifier [alphanumeric, prefixed]",
        gen::employee_id::gen,
    ),
    Field::new(
        "f00186",
        "court-case",
        "organization",
        "US federal court case number (1:24-cv-01234)",
        gen::court_case::gen,
    ),
    // healthcare
    Field::new(
        "f00187",
        "mrn",
        "healthcare",
        "Medical Record Number, facility-scoped [alphanumeric]",
        gen::mrn::gen,
    ),
    Field::new(
        "f00188",
        "npi",
        "healthcare",
        "US National Provider Identifier [10 digits, Luhn-valid]",
        gen::npi::gen,
    ),
    Field::new(
        "f00189",
        "insurance-id",
        "healthcare",
        "Health insurance member or policy ID [alphanumeric]",
        gen::insurance_id::gen,
    ),
    Field::new(
        "f00190",
        "medicare-id",
        "healthcare",
        "US Medicare Beneficiary Identifier [11 alphanumeric chars]",
        gen::medicare_id::gen,
    ),
    Field::new(
        "f00191",
        "icd-10",
        "healthcare",
        "ICD-10 diagnosis code (A00.0, J06.9, M54.5)",
        gen::icd_10::gen,
    ),
    Field::new(
        "f00192",
        "cpt-code",
        "healthcare",
        "CPT medical procedure code [5 digits]",
        gen::cpt_code::gen,
    ),
    Field::new(
        "f00193",
        "ndc",
        "healthcare",
        "US National Drug Code [NNNNN-NNNN-NN]",
        gen::ndc::gen,
    ),
    Field::new(
        "f00194",
        "rx-number",
        "healthcare",
        "Pharmacy prescription number [7-12 digits]",
        gen::rx_number::gen,
    ),
    // dev
    Field::new(
        "f00195",
        "project-code",
        "dev",
        "Short project identifier with prefix (PRJ-0042, ACME-117)",
        gen::project_code::gen,
    ),
    Field::new("f00196", "jira-id", "dev", "Jira issue key [PROJECT-NNNN]", gen::jira_id::gen),
    Field::new(
        "f00197",
        "github-issue",
        "dev",
        "GitHub issue reference (owner/repo#1234)",
        gen::github_issue::gen,
    ),
    Field::new(
        "f00198",
        "commit-hash",
        "dev",
        "Git commit SHA-1 hash [hex, 40 chars]",
        gen::commit_hash::gen,
    ),
    Field::new(
        "f00199",
        "semver",
        "dev",
        "Semantic version string (1.4.2, 0.12.0-beta.3)",
        gen::semver::gen,
    ),
    // ops
    Field::new(
        "f00200",
        "docker-image",
        "ops",
        "Docker image reference with registry, name, and tag",
        gen::docker_image::gen,
    ),
    Field::new(
        "f00201",
        "slack-channel",
        "ops",
        "Slack channel name with # prefix (#engineering, #alerts)",
        gen::slack_channel::gen,
    ),
    Field::new(
        "f00202",
        "sentry-issue",
        "ops",
        "Sentry issue identifier [PROJECT-HASH]",
        gen::sentry_issue::gen,
    ),
    Field::new(
        "f00203",
        "pagerduty-incident",
        "ops",
        "PagerDuty incident ID [alphanumeric, 7+ chars]",
        gen::pagerduty_incident::gen,
    ),
    Field::new(
        "f00204",
        "file-path",
        "ops",
        "Unix-style absolute file path (/var/log/app/server.log)",
        gen::file_path::gen,
    ),
    Field::new(
        "f00205",
        "s3-path",
        "ops",
        "AWS S3 object URI (s3://bucket-name/key/path)",
        gen::s3_path::gen,
    ),
    Field::new(
        "f00206",
        "env-var",
        "ops",
        "Environment variable assignment (DATABASE_URL=postgres://...)",
        gen::env_var::gen,
    ),
    // device
    Field::new(
        "f00207",
        "vin",
        "device",
        "Vehicle Identification Number [17 alphanumeric chars]",
        gen::vin::gen,
    ),
    Field::new(
        "f00208",
        "license-plate",
        "device",
        "Vehicle registration plate with locale-appropriate format",
        gen::license_plate::gen,
    ),
    Field::new(
        "f00209",
        "imei",
        "device",
        "Mobile device IMEI [15 digits, Luhn-valid]",
        gen::imei::gen,
    ),
    Field::new(
        "f00210",
        "imsi",
        "device",
        "Mobile subscriber identity [15 digits, MCC+MNC prefix]",
        gen::imsi::gen,
    ),
    Field::new(
        "f00211",
        "device-id",
        "device",
        "Opaque hardware or app-instance identifier [UUID or hex]",
        gen::device_id::gen,
    ),
];

pub const GROUPS: &[&str] = &[
    "daily",
    "core",
    "text",
    "time",
    "person",
    "contact",
    "location",
    "finance",
    "auth",
    "gov-id",
    "internet",
    "blockchain",
    "organization",
    "healthcare",
    "dev",
    "ops",
    "device",
];

pub fn field_modifiers(id: &str) -> &'static str {
    match id {
        "f00005" => "sign",
        "f00016" => "byte",
        "f00020" => "hex, rgb, rgba",
        "f00021" | "f00056" | "f00109" | "f00113" | "f00134" => "plain",
        "f00026" => "unix, ms, log",
        "f00027" | "f00032" => "us, eu",
        "f00034" | "f00035" | "f00036" | "f00212" | "f00039" => "xuniq",
        "f00040" => "e164, intl, plain",
        "f00049" => "alpha3, numeric",
        "f00052" => "short, underscore",
        "f00054" => "space, dash, plain",
        "f00061" => "dot, comma, plain, usd, eur, gbp",
        "f00062" => "crypto",
        "f00064" => "pin, memorable, mixed, strong",
        "f00110" => "international, internal",
        "f00154" => "plain, dot",
        "f00155" => "http, https, ftp, ws, wss, ssh",
        "f00214" => "system, registered, dynamic, unprivileged, service",
        "f00215" => "fast, slow, seconds",
        "f00164" => "1x1, 4x3, 3x2, 16x9, 21x9, 9x16, 3x4, 2x3",
        "f00176" => "btc",
        "f00206" => "multi",
        _ => "",
    }
}

pub fn field_capabilities(id: &str) -> &'static str {
    match id {
        "f00001" | "f00002" | "f00213" => "range, asc/desc",
        "f00005" => "sign",
        "f00012" => "N, range, asc/desc",
        "f00013" | "f00014" | "f00015" => "N",
        "f00016" => "byte, N",
        "f00020" => "hex, rgb, rgba",
        "f00021" | "f00056" | "f00109" | "f00113" | "f00134" => "plain",
        "f00026" => "unix, ms, log, range, asc/desc",
        "f00027" => "us, eu, range, asc/desc",
        "f00032" => "us, eu, range",
        "f00034" | "f00035" | "f00036" | "f00212" | "f00039" => "xuniq",
        "f00040" => "e164, intl, plain",
        "f00049" => "alpha3, numeric",
        "f00052" => "short, underscore",
        "f00054" => "space, dash, plain",
        "f00061" => "dot, comma, plain, usd, eur, gbp, range, asc/desc",
        "f00062" => "crypto",
        "f00064" => "pin, memorable, mixed, strong, N",
        "f00110" => "international, internal",
        "f00154" => "plain, dot",
        "f00155" => "http, https, ftp, ws, wss, ssh",
        "f00214" => "system, registered, dynamic, unprivileged, service",
        "f00215" => "fast, slow, seconds, asc/desc",
        "f00164" => "1x1, 4x3, 3x2, 16x9, 21x9, 9x16, 3x4, 2x3",
        "f00176" => "btc",
        "f00206" => "multi",
        _ => "",
    }
}