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
{
  "0000": {
    "postcode": "5600000",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0001": {
    "postcode": "5600001",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "北緑丘",
    "town_kana": "キタミドリガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "5600002",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "緑丘",
    "town_kana": "ミドリガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "5600003",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "東豊中町",
    "town_kana": "ヒガシトヨナカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "5600004",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "少路",
    "town_kana": "ショウジ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "5600005",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "西緑丘",
    "town_kana": "ニシミドリガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "5600011",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "上野西",
    "town_kana": "ウエノニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "5600012",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "上野坂",
    "town_kana": "ウエノサカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "5600013",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "上野東",
    "town_kana": "ウエノヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "5600014",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "熊野町",
    "town_kana": "クマノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0015": {
    "postcode": "5600015",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "赤阪",
    "town_kana": "アカサカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0016": {
    "postcode": "5600016",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "栗ケ丘町",
    "town_kana": "クリガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "5600021",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "本町",
    "town_kana": "ホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "5600022",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "北桜塚",
    "town_kana": "キタサクラヅカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "5600023",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "岡上の町",
    "town_kana": "オカカミノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "5600024",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "末広町",
    "town_kana": "スエヒロチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "5600025",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "立花町",
    "town_kana": "タチバナチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "5600026",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "玉井町",
    "town_kana": "タマイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0031": {
    "postcode": "5600031",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池北町",
    "town_kana": "ホタルガイケキタマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0032": {
    "postcode": "5600032",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池東町",
    "town_kana": "ホタルガイケヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0033": {
    "postcode": "5600033",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池中町",
    "town_kana": "ホタルガイケナカマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0034": {
    "postcode": "5600034",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池南町",
    "town_kana": "ホタルガイケミナミマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0035": {
    "postcode": "5600035",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "箕輪",
    "town_kana": "ミノワ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0036": {
    "postcode": "5600036",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池西町",
    "town_kana": "ホタルガイケニシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0041": {
    "postcode": "5600041",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "清風荘",
    "town_kana": "セイフウソウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0042": {
    "postcode": "5600042",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "石橋麻田町",
    "town_kana": "イシバシアサダチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0043": {
    "postcode": "5600043",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "待兼山町",
    "town_kana": "マチカネヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0044": {
    "postcode": "5600044",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "刀根山元町",
    "town_kana": "トネヤマモトマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0045": {
    "postcode": "5600045",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "刀根山",
    "town_kana": "トネヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0046": {
    "postcode": "5600046",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "千里園",
    "town_kana": "センリエン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0051": {
    "postcode": "5600051",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "永楽荘",
    "town_kana": "エイラクソウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0052": {
    "postcode": "5600052",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "春日町",
    "town_kana": "カスガチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0053": {
    "postcode": "5600053",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "向丘",
    "town_kana": "ムカイガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0054": {
    "postcode": "5600054",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "桜の町",
    "town_kana": "サクラノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0055": {
    "postcode": "5600055",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "柴原町",
    "town_kana": "シバハラチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0056": {
    "postcode": "5600056",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "宮山町",
    "town_kana": "ミヤヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0081": {
    "postcode": "5600081",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里北町",
    "town_kana": "シンセンリキタマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0082": {
    "postcode": "5600082",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里東町",
    "town_kana": "シンセンリヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0083": {
    "postcode": "5600083",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里西町",
    "town_kana": "シンセンリニシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0084": {
    "postcode": "5600084",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里南町",
    "town_kana": "シンセンリミナミマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0085": {
    "postcode": "5600085",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "上新田",
    "town_kana": "カミシンデン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8505": {
    "postcode": "5608505",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里西町",
    "town_kana": "シンセンリニシマチ",
    "street": "1丁目1番5号",
    "office_name": "大正製薬 株式会社 関西支店",
    "office_name_kana": "タイシヨウセイヤク カブシキガイシヤ カンサイシテン"
  },
  "8506": {
    "postcode": "5608506",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里西町",
    "town_kana": "シンセンリニシマチ",
    "street": "1丁目1番5号",
    "office_name": "大正富山医薬品 株式会社 関西支店",
    "office_name_kana": "タイシヨウトヤマイヤクヒン カブシキガイシヤ カンサイシテン"
  },
  "8513": {
    "postcode": "5608513",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "少路",
    "town_kana": "ショウジ",
    "street": "1丁目10番1号",
    "office_name": "三菱食品 株式会社 関西支社",
    "office_name_kana": "ミツビシシヨクヒン カブシキガイシヤ カンサイシシヤ"
  },
  "8531": {
    "postcode": "5608531",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "待兼山町",
    "town_kana": "マチカネヤマチョウ",
    "street": "1−3",
    "office_name": "大阪大学 基礎工学部/大学院基礎工学研究科",
    "office_name_kana": "オオサカダイガク キソコウガクブ/ダイガクインキソコウガクケンキユウカ"
  },
  "8532": {
    "postcode": "5608532",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "待兼山町",
    "town_kana": "マチカネヤマチョウ",
    "street": "1−5",
    "office_name": "大阪大学 文学部",
    "office_name_kana": "オオサカダイガク ブンガクブ"
  },
  "8543": {
    "postcode": "5608543",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里西町",
    "town_kana": "シンセンリニシマチ",
    "street": "1丁目1番4号",
    "office_name": "パナソニック ホームズ 株式会社",
    "office_name_kana": "パナソニツク ホ-ムズ カブシキカイシヤ"
  },
  "8548": {
    "postcode": "5608548",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "箕輪",
    "town_kana": "ミノワ",
    "street": "3丁目8番1号",
    "office_name": "ANAベースメンテナンステクニクス 株式会社",
    "office_name_kana": "エ-エヌエ-ベ-スメンテナンステクニクス カブシキガイシヤ"
  },
  "8550": {
    "postcode": "5608550",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里東町",
    "town_kana": "シンセンリヒガシマチ",
    "street": "1丁目5−1",
    "office_name": "株式会社 阪急阪神百貨店 千里阪急",
    "office_name_kana": "カブシキガイシヤ ハンキユウハンシンヒヤツカテン センリハンキユウ"
  },
  "8551": {
    "postcode": "5608551",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "岡上の町",
    "town_kana": "オカカミノチョウ",
    "street": "1丁目1番16号",
    "office_name": "阪急バス 株式会社",
    "office_name_kana": "ハンキユウバス カブシキガイシヤ"
  },
  "8552": {
    "postcode": "5608552",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "刀根山",
    "town_kana": "トネヤマ",
    "street": "5丁目1番1号",
    "office_name": "独立行政法人 国立病院機構 刀根山病院",
    "office_name_kana": "ドクリツギヨウセイホウジン コクリツビヨウインキコウ トネヤマビヨウイン"
  },
  "8555": {
    "postcode": "5608555",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "岡上の町",
    "town_kana": "オカカミノチョウ",
    "street": "2丁目2−3",
    "office_name": "株式会社 ニッショーストアー事業本部",
    "office_name_kana": "カブシキガイシヤ ニツシヨ-ストア-ジギヨウホンブ"
  },
  "8560": {
    "postcode": "5608560",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "岡上の町",
    "town_kana": "オカカミノチョウ",
    "street": "4丁目3−40",
    "office_name": "豊中年金事務所",
    "office_name_kana": "トヨナカネンキンジムシヨ"
  },
  "8561": {
    "postcode": "5608561",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里東町",
    "town_kana": "シンセンリヒガシマチ",
    "street": "1丁目4−1阪急千里中央ビル6F",
    "office_name": "NHK 千里営業センター",
    "office_name_kana": "エヌエイチケイ センリエイギヨウセンタ-"
  },
  "8565": {
    "postcode": "5608565",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "柴原町",
    "town_kana": "シバハラチョウ",
    "street": "4丁目14−1",
    "office_name": "市立豊中病院",
    "office_name_kana": "シリツトヨナカビヨウイン"
  },
  "8567": {
    "postcode": "5608567",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "螢池西町",
    "town_kana": "ホタルガイケニシマチ",
    "street": "2丁目2−1",
    "office_name": "株式会社 廣済堂",
    "office_name_kana": "カブシキカイシヤ コウサイドウ"
  },
  "8579": {
    "postcode": "5608579",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里東町",
    "town_kana": "シンセンリヒガシマチ",
    "street": "1丁目5−3",
    "office_name": "株式会社 オートバックスセブン",
    "office_name_kana": "カブシキガイシヤ オ-トバツクスセブン"
  },
  "8580": {
    "postcode": "5608580",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "豊中市",
    "city_kana": "トヨナカシ",
    "town": "新千里西町",
    "town_kana": "シンセンリニシマチ",
    "street": "1−1−6",
    "office_name": "損害保険ジャパン日本興亜 株式会社",
    "office_name_kana": "ソンガイホケンジヤパンニツポンコウア カブシキガイシヤ"
  }
}