jpostcode_rs 0.1.4

Japanese postal code lookup library in Rust, powered by jpostcode-data
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
{
  "0000": [
    {
      "postcode": "6500000",
      "prefecture": "兵庫県",
      "prefecture_kana": "ヒョウゴケン",
      "prefecture_code": 28,
      "city": "神戸市中央区",
      "city_kana": "コウベシチュウオウク",
      "town": "",
      "town_kana": "",
      "street": null,
      "office_name": null,
      "office_name_kana": null
    },
    {
      "postcode": "6500000",
      "prefecture": "兵庫県",
      "prefecture_kana": "ヒョウゴケン",
      "prefecture_code": 28,
      "city": "神戸市西区",
      "city_kana": "コウベシニシク",
      "town": "",
      "town_kana": "",
      "street": null,
      "office_name": null,
      "office_name_kana": null
    }
  ],
  "0001": {
    "postcode": "6500001",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "加納町",
    "town_kana": "カノウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "6500002",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "北野町",
    "town_kana": "キタノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "6500003",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "山本通",
    "town_kana": "ヤマモトドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "6500004",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "中山手通",
    "town_kana": "ナカヤマテドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "6500005",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "再度筋町",
    "town_kana": "フタタビスジチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0006": {
    "postcode": "6500006",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "諏訪山町",
    "town_kana": "スワヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0007": {
    "postcode": "6500007",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "神戸港地方",
    "town_kana": "コウベコウジカタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "6500011",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "下山手通",
    "town_kana": "シモヤマテドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "6500012",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "北長狭通",
    "town_kana": "キタナガサドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "6500013",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "花隈町",
    "town_kana": "ハナクマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "6500014",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "元町高架通",
    "town_kana": "モトマチコウカドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0015": {
    "postcode": "6500015",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "多聞通",
    "town_kana": "タモンドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0016": {
    "postcode": "6500016",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "橘通",
    "town_kana": "タチバナドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0017": {
    "postcode": "6500017",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "楠町",
    "town_kana": "クスノキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "6500021",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "三宮町",
    "town_kana": "サンノミヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "6500022",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "元町通",
    "town_kana": "モトマチドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "6500023",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "栄町通",
    "town_kana": "サカエマチドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "6500024",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "海岸通",
    "town_kana": "カイガンドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "6500025",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "相生町",
    "town_kana": "アイオイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "6500026",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "古湊通",
    "town_kana": "コミナトドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0027": {
    "postcode": "6500027",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "中町通",
    "town_kana": "ナカマチドオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0031": {
    "postcode": "6500031",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東町",
    "town_kana": "ヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0032": {
    "postcode": "6500032",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "伊藤町",
    "town_kana": "イトウマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0033": {
    "postcode": "6500033",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "江戸町",
    "town_kana": "エドマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0034": {
    "postcode": "6500034",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "京町",
    "town_kana": "キョウマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0035": {
    "postcode": "6500035",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "浪花町",
    "town_kana": "ナニワマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0036": {
    "postcode": "6500036",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "播磨町",
    "town_kana": "ハリママチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0037": {
    "postcode": "6500037",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "明石町",
    "town_kana": "アカシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0038": {
    "postcode": "6500038",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "西町",
    "town_kana": "ニシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0039": {
    "postcode": "6500039",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "前町",
    "town_kana": "マエマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0041": {
    "postcode": "6500041",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "新港町",
    "town_kana": "シンコウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0042": {
    "postcode": "6500042",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "波止場町",
    "town_kana": "ハトバチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0043": {
    "postcode": "6500043",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "弁天町",
    "town_kana": "ベンテンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0044": {
    "postcode": "6500044",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0045": {
    "postcode": "6500045",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島",
    "town_kana": "ミナトジマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0046": {
    "postcode": "6500046",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0047": {
    "postcode": "6500047",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島南町",
    "town_kana": "ミナトジマミナミマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0048": {
    "postcode": "6500048",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "神戸空港",
    "town_kana": "コウベクウコウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "6508501",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "栄町通",
    "town_kana": "サカエマチドオリ",
    "street": "3丁目3番17号損保ジャパン日本興亜神戸ビル",
    "office_name": "損害保険ジャパン日本興亜 株式会社",
    "office_name_kana": "ソンガイホケンジヤパンニツポンコウア カブシキガイシヤ"
  },
  "8502": {
    "postcode": "6508502",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "中山手通",
    "town_kana": "ナカヤマテドオリ",
    "street": "6丁目1−1",
    "office_name": "神戸県税事務所",
    "office_name_kana": "コウベケンゼイジムシヨ"
  },
  "8503": {
    "postcode": "6508503",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "山本通",
    "town_kana": "ヤマモトドオリ",
    "street": "2丁目14−1",
    "office_name": "株式会社 メディセオ",
    "office_name_kana": "カブシキガイシヤ メデイセオ"
  },
  "8505": {
    "postcode": "6508505",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "磯上通",
    "town_kana": "イソガミドオリ",
    "street": "4−3−10",
    "office_name": "株式会社 ファミリア",
    "office_name_kana": "カブシキガイシヤ フアミリア"
  },
  "8506": {
    "postcode": "6508506",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "加納町",
    "town_kana": "カノウチョウ",
    "street": "6丁目2番1号",
    "office_name": "関西電力 株式会社",
    "office_name_kana": "カンサイデンリヨク カブシキガイシヤ"
  },
  "8510": {
    "postcode": "6508510",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "下山手通",
    "town_kana": "シモヤマテドオリ",
    "street": "5丁目4−1",
    "office_name": "兵庫県 警察本部",
    "office_name_kana": "ヒヨウゴケン ケイサツホンブ"
  },
  "8511": {
    "postcode": "6508511",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "中山手通",
    "town_kana": "ナカヤマテドオリ",
    "street": "2丁目2−20",
    "office_name": "神戸税務署",
    "office_name_kana": "コウベゼイムシヨ"
  },
  "8515": {
    "postcode": "6508515",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "中山手通",
    "town_kana": "ナカヤマテドオリ",
    "street": "2丁目24番地7号",
    "office_name": "NHK 神戸放送局",
    "office_name_kana": "エヌエイチケイ コウベホウソウキヨク"
  },
  "8520": {
    "postcode": "6508520",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "1丁目8−2",
    "office_name": "大阪ガス 株式会社 兵庫リビング営業部",
    "office_name_kana": "オオサカガス カブシキガイシヤ ヒヨウゴリビングエイギヨウブ"
  },
  "8521": {
    "postcode": "6508521",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目13−1",
    "office_name": "株式会社 ノエビア",
    "office_name_kana": "カブシキガイシヤ ノエビア"
  },
  "8522": {
    "postcode": "6508522",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "明石町",
    "town_kana": "アカシマチ",
    "street": "44",
    "office_name": "あいおい損害保険 株式会社",
    "office_name_kana": "アイオイソンガイホケン カブシキガイシヤ"
  },
  "8525": {
    "postcode": "6508525",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "浪花町",
    "town_kana": "ナニワマチ",
    "street": "59",
    "office_name": "株式会社 フェリシモ",
    "office_name_kana": "カブシキガイシヤ フエリシモ"
  },
  "8528": {
    "postcode": "6508528",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "4丁目4−4",
    "office_name": "兵庫県 社会保険診療報酬支払基金",
    "office_name_kana": "ヒヨウゴケン シヤカイホケンシンリヨウホウシユウシハライキキン"
  },
  "8530": {
    "postcode": "6508530",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島",
    "town_kana": "ミナトジマ",
    "street": "1丁目3番6",
    "office_name": "兵庫医療大学",
    "office_name_kana": "ヒヨウゴイリヨウダイガク"
  },
  "8533": {
    "postcode": "6508533",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "栄町通",
    "town_kana": "サカエマチドオリ",
    "street": "4丁目2−16",
    "office_name": "損害保険ジャパン日本興亜 株式会社",
    "office_name_kana": "ソンガイホケンジヤパンニツポンコウア カブシキガイシヤ"
  },
  "8536": {
    "postcode": "6508536",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "一丁目1番1号",
    "office_name": "株式会社 サンテレビジョン",
    "office_name_kana": "カブシキガイシヤ サンテレビジヨン"
  },
  "8539": {
    "postcode": "6508539",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "三宮町",
    "town_kana": "サンノミヤチョウ",
    "street": "1丁目9−1−908",
    "office_name": "神戸親和女子大学 通信教育部事務室",
    "office_name_kana": "コウベシンワジヨシダイガク ツウシンキヨウイクブジムシツ"
  },
  "8543": {
    "postcode": "6508543",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目1",
    "office_name": "神戸商工会議所",
    "office_name_kana": "コウベシヨウコウカイギシヨ"
  },
  "8546": {
    "postcode": "6508546",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "1丁目3−5",
    "office_name": "トラスコ中山 株式会社 プラネット神戸",
    "office_name_kana": "トラスコナカヤマ カブシキガイシヤ プラネツトコウベ"
  },
  "8550": {
    "postcode": "6508550",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目3−2",
    "office_name": "田崎真珠 株式会社",
    "office_name_kana": "タサキシンジユ カブシキガイシヤ"
  },
  "8551": {
    "postcode": "6508551",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "波止場町",
    "town_kana": "ハトバチョウ",
    "street": "1番1号",
    "office_name": "第五管区海上保安本部",
    "office_name_kana": "ダイゴカンクカイジヨウホアンホンブ"
  },
  "8555": {
    "postcode": "6508555",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "7丁目1−1",
    "office_name": "株式会社 アシックス",
    "office_name_kana": "カブシキガイシヤ アシツクス"
  },
  "8558": {
    "postcode": "6508558",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目13番4号",
    "office_name": "フジッコ 株式会社",
    "office_name_kana": "フジツコ カブシキガイシヤ"
  },
  "8559": {
    "postcode": "6508559",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目13−4",
    "office_name": "フジッコ 株式会社 ウェルネス倶楽部",
    "office_name_kana": "フジツコ カブシキガイシヤ ウエルネスクラブ"
  },
  "8560": {
    "postcode": "6508560",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "波止場町",
    "town_kana": "ハトバチョウ",
    "street": "2−1",
    "office_name": "株式会社 ホテルオークラ神戸",
    "office_name_kana": "カブシキガイシヤ ホテルオ-クラコウベ"
  },
  "8565": {
    "postcode": "6508565",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "橘通",
    "town_kana": "タチバナドオリ",
    "street": "2丁目2−1",
    "office_name": "神戸簡易裁判所",
    "office_name_kana": "コウベカンイサイバンシヨ"
  },
  "8566": {
    "postcode": "6508566",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "山本通",
    "town_kana": "ヤマモトドオリ",
    "street": "2丁目14−1北野坂ビル4階",
    "office_name": "株式会社 メディセオ 買掛管理グループ",
    "office_name_kana": "カブシキガイシヤ メデイセオ カイカケカンリグル-プ"
  },
  "8567": {
    "postcode": "6508567",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "下山手通",
    "town_kana": "シモヤマテドオリ",
    "street": "5丁目10−1",
    "office_name": "兵庫県庁",
    "office_name_kana": "ヒヨウゴケンチヨウ"
  },
  "8570": {
    "postcode": "6508570",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "加納町",
    "town_kana": "カノウチョウ",
    "street": "6丁目5−1",
    "office_name": "神戸市役所",
    "office_name_kana": "コウベシヤクシヨ"
  },
  "8571": {
    "postcode": "6508571",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "1丁目5−7",
    "office_name": "株式会社 神戸新聞社",
    "office_name_kana": "カブシキガイシヤ コウベシンブンシヤ"
  },
  "8575": {
    "postcode": "6508575",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "橘通",
    "town_kana": "タチバナドオリ",
    "street": "2丁目2−1",
    "office_name": "神戸地方裁判所",
    "office_name_kana": "コウベチホウサイバンシヨ"
  },
  "8576": {
    "postcode": "6508576",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "元町通",
    "town_kana": "モトマチドオリ",
    "street": "6−1−8東栄ビルディング502B号",
    "office_name": "株式会社 リーフ・パブリケーションズ 神戸支局 ぱど事業部",
    "office_name_kana": "カブシキガイシヤ リ-フ・パブリケ-シヨンズ コウベシキヨク パドジギヨウブ"
  },
  "8577": {
    "postcode": "6508577",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "7丁目7−7",
    "office_name": "UCC上島珈琲 株式会社",
    "office_name_kana": "ユ-シ-シ-ウエシマコ-ヒ- カブシキガイシヤ"
  },
  "8580": {
    "postcode": "6508580",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "1丁目5−7",
    "office_name": "株式会社 ラジオ関西",
    "office_name_kana": "カブシキガイシヤ ラジオカンサイ"
  },
  "8584": {
    "postcode": "6508584",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "江戸町",
    "town_kana": "エドマチ",
    "street": "95井門神戸ビル12F",
    "office_name": "株式会社 リクルート ホットペッパー神戸版編集部",
    "office_name_kana": "カブシキガイシヤ リクル-ト ホツトペツパ-コウベバンヘンシユウブ"
  },
  "8585": {
    "postcode": "6508585",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島中町",
    "town_kana": "ミナトジマナカマチ",
    "street": "6丁目8−1",
    "office_name": "株式会社 ワールド",
    "office_name_kana": "カブシキガイシヤ ワ-ルド"
  },
  "8586": {
    "postcode": "6508586",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "港島",
    "town_kana": "ミナトジマ",
    "street": "1丁目1番3",
    "office_name": "神戸学院大学 ポートアイランド キャンパス",
    "office_name_kana": "コウベガクインダイガク ポ-トアイランド キヤンパス"
  },
  "8588": {
    "postcode": "6508588",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "1丁目3−3神戸ハーバーランドセンタービル16F",
    "office_name": "株式会社 Jコンテンツ",
    "office_name_kana": "カブシキガイシヤ ジエイコンテンツ"
  },
  "8589": {
    "postcode": "6508589",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "波止場町",
    "town_kana": "ハトバチョウ",
    "street": "5番6号",
    "office_name": "兵庫エフエム放送 株式会社",
    "office_name_kana": "ヒヨウゴエフエムホウソウ カブシキガイシヤ"
  },
  "8660": {
    "postcode": "6508660",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "浪花町",
    "town_kana": "ナニワマチ",
    "street": "56(神戸中央郵便局私書箱第1234号)",
    "office_name": "株式会社 三井住友銀行",
    "office_name_kana": "カブシキガイシヤ ミツイスミトモギンコウ"
  },
  "8666": {
    "postcode": "6508666",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "海岸通",
    "town_kana": "カイガンドオリ",
    "street": "1番地(神戸中央郵便局私書箱第1230号)",
    "office_name": "全国農業協同組合連合会 兵庫県本部",
    "office_name_kana": "ゼンコクノウギヨウキヨウドウクミアイレンゴウカイ ヒヨウゴケンホンブ"
  },
  "8670": {
    "postcode": "6508670",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "3丁目1−1(神戸中央郵便局私書箱第1033号)",
    "office_name": "川崎重工業 株式会社 神戸工場",
    "office_name_kana": "カワサキジユウコウギヨウ カブシキガイシヤ コウベコウジヨウ"
  },
  "8677": {
    "postcode": "6508677",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "楠町",
    "town_kana": "クスノキチョウ",
    "street": "5丁目4−8(神戸中央郵便局私書箱第1251号)",
    "office_name": "宮野医療器 株式会社",
    "office_name_kana": "ミヤノイリヨウキ カブシキガイシヤ"
  },
  "8680": {
    "postcode": "6508680",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "東川崎町",
    "town_kana": "ヒガシカワサキチョウ",
    "street": "1丁目1−3(神戸中央郵便局私書箱第1140号)",
    "office_name": "川崎重工業 株式会社 神戸本社",
    "office_name_kana": "カワサキジユウコウギヨウ カブシキガイシヤ コウベホンシヤ"
  },
  "8686": {
    "postcode": "6508686",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "浪花町",
    "town_kana": "ナニワマチ",
    "street": "61(神戸中央郵便局私書箱第1281号)",
    "office_name": "神戸信用金庫",
    "office_name_kana": "コウベシンヨウキンコ"
  },
  "8787": {
    "postcode": "6508787",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "栄町通",
    "town_kana": "サカエマチドオリ",
    "street": "6丁目2−1(神戸中央郵便局私書箱第1360号)",
    "office_name": "株式会社 ゆうちょ銀行 兵庫地域センター",
    "office_name_kana": "カブシキガイシヤ ユウチヨギンコウ ヒヨウゴチイキセンタ-"
  },
  "8794": {
    "postcode": "6508794",
    "prefecture": "兵庫県",
    "prefecture_kana": "ヒョウゴケン",
    "prefecture_code": 28,
    "city": "神戸市中央区",
    "city_kana": "コウベシチュウオウク",
    "town": "栄町通",
    "town_kana": "サカエマチドオリ",
    "street": "7丁目1−1",
    "office_name": "大阪貯金事務センター 神戸分館",
    "office_name_kana": "コウベチヨキンジムセンタ- コウベブンカン"
  }
}