Name | Required | Description | Default | Example |
---|---|---|---|---|
callback | optinal | jsonpで取得する場合のコールバック関数名を指定します。 指定されなかった場合、JSON文字列がそのまま返されます。 | callback |
Field | Type | Description |
---|---|---|
success | Boolean | 正常に取得できたかどうかを返します。trueなら正常、falseなら何らかのエラーが発生したことを示します。 |
errors | Collection of String | エラーメッセージの配列を返します。 |
result | Collection of LGCode | 標準地域コードの情報の配列を返します。
Example: "result": [ { "prefecture": "東京都", "locality": "品川区", "uri": "http://statdb.nstac.go.jp/lod/sac/C13109", "lgcode": "13109" }, { "prefecture": "福井県", "locality": "鯖江市", "uri": "http://statdb.nstac.go.jp/lod/sac/C18207", "lgcode": "18207" }, { "prefecture": "静岡県", "locality": "三島市", "uri": "http://statdb.nstac.go.jp/lod/sac/C22206", "lgcode": "22206" } ] |
{ "result": [ { "prefecture": "東京都", "locality": "品川区", "uri": "http://statdb.nstac.go.jp/lod/sac/C13109", "lgcode": "13109" }, { "prefecture": "福井県", "locality": "鯖江市", "uri": "http://statdb.nstac.go.jp/lod/sac/C18207", "lgcode": "18207" }, { "prefecture": "静岡県", "locality": "三島市", "uri": "http://statdb.nstac.go.jp/lod/sac/C22206", "lgcode": "22206" } ], "success": true }