RESAS

はじめに
RESAS-API一覧
共通
人口マップ
産業構造マップ
企業活動マップ
観光マップ
まちづくりマップ
雇用/医療・福祉マップ
地方財政マップ
コード一覧

海面養殖販売金額帯別の経営体割合

地域単位、年単位の海面養殖販売金額帯別の経営体割合を返します。

GET  api/v1/fishery/sea/aquacultureSales

データ提供年

2008年,2013年,2018年

RESAS対象マップ

産業構造マップ > 水産業 > 海面漁獲物等販売金額

  • リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。

parameters

Name Description Required
prefCode 都道府県コード true
cityCode

市区町村コード

「すべての市区町村」を選択する場合は「-」を送ります。

true
matter

表示内容

1:指定地域

2:都道府県内平均

3:全国平均

true
addArea

追加エリアコード

他地域と合算した値を取得する際に使用するパラメータです。 「addArea=都道府県コード_市区町村コード」の形式で指定します。 複数指定する場合は「addArea=1_01100,13_13101」などのように、「,」 で各地域のパラメータを区切ります。 都道府県単位で指定する場合、「addArea=1_,13_」の形式で指定します。 最大10個指定でき、11個以上送られてきた場合はステータスコード400を返します。 「cityCode」で「すべての市区町村」(-)を選択した場合、addAreaで合算されるのは、都道府県単位の数値となります。 また、「cityCode」でいずれかの市区町村(13101など)を選択した場合、addAreaで合算されるのは、市区町村単位の数値となります。

responses

Name Description
/result/prefCode 対象の県コード
/result/prefName 対象の県名
/result/cityCode 対象の市町村コード
/result/cityName 対象の市町村名
/result/matter 表示内容
/result/years/year
/result/years/legened/label 販売金額帯名
/result/years/legened/code

販売金額帯コード

1:100万円未満

2:100万円以上1,000万円未満

3:1,000万円以上5,000万円未満

4:5,000万円以上1億円未満

5:1億円以上

/result/years/label ラベル
/result/years/data/label 販売金額帯名
/result/years/data/code

販売金額帯コード

1:100万円未満

2:100万円以上1,000万円未満

3:1,000万円以上5,000万円未満

4:5,000万円以上1億円未満

5:1億円以上

/result/years/data/value 割合

sample

GET https://opendata.resas-portal.go.jp/api/v1/fishery/sea/aquacultureSales?cityCode=11362&matter=3&prefCode=11
{
    "message": null,
    "result": {
        "prefCode": "",
        "prefName": "",
        "cityCode": "",
        "cityName": "",
        "matter": "3",
        "years": [{
            "year": 2008,
            "legend": [{
                "label": "100万円未満",
                "code": "1"
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2"
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3"
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4"
            }, {
                "label": "1億円以上",
                "code": "5"
            }],
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 15.38
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 46.54
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 30.48
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 4.57
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 3.03
            }]
        }, {
            "year": 2013,
            "legend": [{
                "label": "100万円未満",
                "code": "1"
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2"
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3"
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4"
            }, {
                "label": "1億円以上",
                "code": "5"
            }],
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 17.08
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 44.71
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 30.2
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 4.66
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 3.36
            }]
        }, {
            "year": 2018,
            "legend": [{
                "label": "100万円未満",
                "code": "1"
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2"
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3"
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4"
            }, {
                "label": "1億円以上",
                "code": "5"
            }],
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 14.57
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 39.7
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 33.76
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 6.89
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 5.08
            }]
        }]
    }
}