A Corporation object would store the information about the organization, or the division of a organization, which has its special postal code designated.

interface Corporation {
    block_lot: string;
    block_lot_num: null | string;
    code_type: number;
    name: string;
    name_kana: string;
    post_office: string;
}

Hierarchy (View Summary)

Properties

block_lot: string

The address line by which the division is postally reachable, in the sense it doesn't necessarily point to the actual address of its business place.

block_lot_num: null | string

The reconstructed numerical part of the address line below the second-level administrative division.

Example: "3-12-14"

code_type: number

0 indicates the postal code most likely describes a actual business place, and 1 indicates it refers to a post office box.

name: string

The name of the organization, or the division of such.

name_kana: string

The reading of the division's name.

post_office: string

The name of the post office that handles the postal items for the division.