Last active
September 30, 2024 07:33
-
-
Save yuzutas0/e089317058bf48fe1def62c85bd5045a to your computer and use it in GitHub Desktop.
Geolonia 住所データ https://geolonia.github.io/japanese-addresses/ のCSVファイルをBigQueryに登録するとカラム名取得に失敗するので、スキーマファイルを用意しよう委員会
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "prefecture_code", | |
"type": "INTEGER", | |
"mode": "NULLABLE", | |
"description": "都道府県コード" | |
}, | |
{ | |
"name": "prefecture_name", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "都道府県名" | |
}, | |
{ | |
"name": "prefecture_name_kana", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "都道府県名カナ" | |
}, | |
{ | |
"name": "prefecture_name_roman", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "都道府県名ローマ字" | |
}, | |
{ | |
"name": "city_code", | |
"type": "INTEGER", | |
"mode": "NULLABLE", | |
"description": "市区町村コード" | |
}, | |
{ | |
"name": "city_name", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "市区町村名" | |
}, | |
{ | |
"name": "city_name_kana", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "市区町村名カナ" | |
}, | |
{ | |
"name": "city_name_roman", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "市区町村名ローマ字" | |
}, | |
{ | |
"name": "town_code", | |
"type": "INTEGER", | |
"mode": "NULLABLE", | |
"description": "大字町丁目コード" | |
}, | |
{ | |
"name": "town_name", | |
"type": "STRING", | |
"mode": "NULLABLE", | |
"description": "大字町丁目名" | |
}, | |
{ | |
"name": "latitude", | |
"type": "FLOAT", | |
"mode": "NULLABLE", | |
"description": "緯度(代表点)" | |
}, | |
{ | |
"name": "longitude", | |
"type": "FLOAT", | |
"mode": "NULLABLE", | |
"description": "経度(代表点)" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment