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

    Interface School

    A School object stores the information about a school identified by a school code (学校コード) designated by MEXT.

    interface School {
        abolished_date: string | null;
        address_raw: string;
        addresses: v20250101.SchoolAddress[];
        branch: number;
        code: string;
        established_date: string;
        establishment_type: number;
        jurisdiction_prefecture_code: string;
        name: string;
        new_code: string[];
        school_survey_number: string;
        type: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      A catch-all property

    Index
    abolished_date: string | null

    The date the school was abolished, in the form of "YYYY-MM-DD", or null if it is still active.

    address_raw: string

    The raw, unprocessed address string of the school.

    Example: "東京都文京区本郷7-3-1"

    The resolved addresses of the school.

    branch: number

    The branch code (本分校) where 1 denotes the main school.

    code: string

    The 13 digit school code (学校コード).

    Example: "F113110102700"

    established_date: string

    The date the school was established, in the form of "YYYY-MM-DD".

    establishment_type: number

    The establishment type code (設置区分).

    jurisdiction_prefecture_code: string

    The prefecture code of the jurisdiction, defined in JISX0401.

    Example: "13"

    name: string

    The name of the school.

    Example: "東京大学"

    new_code: string[]

    The list of the school codes that superseded this school, if any.

    school_survey_number: string

    The school survey number (学校調査番号).

    type: string

    The school type code.

    Example: "F1"