Skip to content

Instantly share code, notes, and snippets.

@yuzutas0
Last active February 14, 2024 05:14
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuzutas0/e089317058bf48fe1def62c85bd5045a to your computer and use it in GitHub Desktop.
Save yuzutas0/e089317058bf48fe1def62c85bd5045a to your computer and use it in GitHub Desktop.
Geolonia 住所データ https://geolonia.github.io/japanese-addresses/ のCSVファイルをBigQueryに登録するとカラム名取得に失敗するので、スキーマファイルを用意しよう委員会
[
{
"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