@ken-all/kenall
    Preparing search index...

    Interface SchoolAddress

    A SchoolAddress object stores the resolved address of a school.

    interface SchoolAddress {
        block_lot_num: string;
        building: string | null;
        city: string;
        city_kana: string;
        city_roman: string;
        floor_room: string | null;
        jisx0402: string;
        kyoto_street: string | null;
        postal_code: string;
        prefecture: string;
        prefecture_kana: string;
        prefecture_roman: string;
        street_number: string;
        town: string;
    }
    Index
    block_lot_num: string

    The block and lot number part of the address.

    Example: "7-3-1"

    building: string | null

    The name of the building, if any.

    city: string

    The name of the city.

    Example: "文京区"

    city_kana: string

    The reading of the name of the city in katakana.

    Example: "ブンキョウク"

    city_roman: string

    The "romanized" reading of the name of the city.

    Example: "Bunkyo-ku"

    floor_room: string | null

    The floor and room part of the address, if any.

    jisx0402: string

    The 5 digit Japanese municipality code (全国地方公共団体コード).

    kyoto_street: string | null

    The instructional phrase (通り名) specific to Kyoto city, if any.

    postal_code: string

    The postal code assigned to the location of the school.

    prefecture: string

    The name of the prefecture in Kanji.

    Example: "東京都"

    prefecture_kana: string

    The reading of the name of the prefecture in katakana.

    Example: "トウキョウト"

    prefecture_roman: string

    The "romanized" reading of the name of the prefecture.

    Example: "Tokyo"

    street_number: string

    The remaining part of the address below the city level.

    Example: "本郷7-3-1"

    town: string

    The name of the town.

    Example: "本郷"