RESAS

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

林産物販売金額帯別の経営体割合

地域単位、年単位の林産物販売金額帯別の経営体割合を返します。

GET  api/v1/forestry/income/forSalesRatio

データ提供年

2005-2020年(5年毎)

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/legened/label 販売金額帯名
/result/legened/code

販売金額帯コード

1:100万円未満

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

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

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

5:1億円以上

/result/years/year
/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/forestry/income/forSalesRatio?prefCode=-&cityCode=-&matter=3
{
    "message": null,
    "result": {
        "prefCode": "",
        "prefName": "",
        "cityCode": "",
        "cityName": "",
        "matter": 3,
        "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"
        }],
        "years": [{
            "year": 2005,
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 64.72
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 29.5
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 4.1
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 0.98
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 0.71
            }]
        }, {
            "year": 2010,
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 70.44
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 22.86
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 4.62
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 1.11
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 0.97
            }]
        }, {
            "year": 2015,
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 63.48
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 27.66
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 5.74
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 1.54
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 1.57
            }]
        }, {
            "year": 2020,
            "label": "全国平均",
            "data": [{
                "label": "100万円未満",
                "code": "1",
                "value": 48.14
            }, {
                "label": "100万円以上1,000万円未満",
                "code": "2",
                "value": 33.21
            }, {
                "label": "1,000万円以上5,000万円未満",
                "code": "3",
                "value": 10.1
            }, {
                "label": "5,000万円以上1億円未満",
                "code": "4",
                "value": 3.8
            }, {
                "label": "1億円以上",
                "code": "5",
                "value": 4.75
            }]
        }]
    }
}