海面漁獲物等出荷先別経営体数割合 new
地域単位、年単位の海面漁獲物等出荷先別経営体数割合を返します。
GET api/v1/fishery/sea/shipRatio
データ提供年
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/label | ラベル |
/result/years/data/code |
出荷先コード 1:漁協の市場または荷さばき所 2:漁協以外の棚卸市場 3:流通業者・加工業者 4:小売業者 5:生協 6:直売所 7:自家販売 8:小売業者・生協 9:外食産業 10:消費者に直接販売 11:その他 |
/result/years/data/label | 出荷先名(ラベル) |
/result/years/data/value | 割合 |
sample
GET https://opendata.resas-portal.go.jp/api/v1/fishery/sea/shipRatio?cityCode=-&matter=3&prefCode=13
{
"message": null,
"result": {
"prefCode": "13",
"prefName": "東京都",
"cityCode": "",
"cityName": "",
"matter": "3",
"years": [{
"year": 2008,
"label": "東京都",
"data": [{
"label": "漁協の市場または荷捌き所",
"code": "1",
"value": 73.69
}, {
"label": "漁協以外の卸売市場",
"code": "2",
"value": 5.38
}, {
"label": "流通業者・加工業者",
"code": "3",
"value": 3.14
}, {
"label": "小売業者",
"code": "4",
"value": 1.05
}, {
"label": "生協",
"code": "5",
"value": 0
}, {
"label": "直売所",
"code": "6",
"value": 0.75
}, {
"label": "自家販売",
"code": "7",
"value": 15.7
}, {
"label": "その他",
"code": "11",
"value": 0.3
}]
}, {
"year": 2013,
"label": "東京都",
"data": [{
"label": "漁協の市場または荷捌き所",
"code": "1",
"value": 82.12
}, {
"label": "漁協以外の卸売市場",
"code": "2",
"value": 3.48
}, {
"label": "流通業者・加工業者",
"code": "3",
"value": 4.97
}, {
"label": "小売業者",
"code": "4",
"value": 3.15
}, {
"label": "生協",
"code": "5",
"value": 0
}, {
"label": "直売所",
"code": "6",
"value": 0
}, {
"label": "自家販売",
"code": "7",
"value": 2.81
}, {
"label": "その他",
"code": "11",
"value": 3.48
}]
}, {
"year": 2018,
"label": "東京都",
"data": [{
"label": "漁協の市場または荷捌き所",
"code": "1",
"value": 81.84
}, {
"label": "漁協以外の卸売市場",
"code": "2",
"value": 5.66
}, {
"label": "流通業者・加工業者",
"code": "3",
"value": 5.86
}, {
"label": "小売業者・生協",
"code": "8",
"value": 1.56
}, {
"label": "外食産業",
"code": "9",
"value": 0.39
}, {
"label": "消費者に直接販売",
"code": "10",
"value": 0.39
}, {
"label": "その他",
"code": "11",
"value": 4.3
}]
}]
}
}