gbizinfo 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.openapi-generator/FILES +48 -0
- data/.openapi-generator/VERSION +1 -0
- data/.openapi-generator-ignore +30 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +3 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +64 -0
- data/LICENSE.txt +21 -0
- data/README.md +121 -0
- data/Rakefile +12 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/docs/ApiError.md +20 -0
- data/docs/CertificationInfo.md +30 -0
- data/docs/CommendationInfo.md +26 -0
- data/docs/CompatibilityOfChildcareAndWork.md +24 -0
- data/docs/Finance.md +24 -0
- data/docs/GBizINFORESTAPIApi.md +678 -0
- data/docs/GBizINFORESTAPIPeriodSpecifiedSearchApi.md +591 -0
- data/docs/HojinInfo.md +76 -0
- data/docs/HojinInfoResponse.md +24 -0
- data/docs/HojinInfoUpdateInfoResponse.md +30 -0
- data/docs/MajorShareholders.md +20 -0
- data/docs/ManagementIndex.md +66 -0
- data/docs/PatentInfo.md +26 -0
- data/docs/ProcurementInfo.md +26 -0
- data/docs/SubsidyInfo.md +32 -0
- data/docs/WomenActivityInfos.md +28 -0
- data/docs/WorkplaceBaseInfos.md +28 -0
- data/docs/WorkplaceInfoBean.md +22 -0
- data/gbizinfo.gemspec +37 -0
- data/git_push.sh +57 -0
- data/lib/gbizinfo/api/g_biz_inforestapi_api.rb +748 -0
- data/lib/gbizinfo/api/g_biz_inforestapi_period_specified_search_api.rb +670 -0
- data/lib/gbizinfo/api_client.rb +391 -0
- data/lib/gbizinfo/api_error.rb +58 -0
- data/lib/gbizinfo/configuration.rb +290 -0
- data/lib/gbizinfo/models/api_error.rb +225 -0
- data/lib/gbizinfo/models/certification_info.rb +275 -0
- data/lib/gbizinfo/models/commendation_info.rb +255 -0
- data/lib/gbizinfo/models/compatibility_of_childcare_and_work.rb +245 -0
- data/lib/gbizinfo/models/finance.rb +249 -0
- data/lib/gbizinfo/models/hojin_info.rb +515 -0
- data/lib/gbizinfo/models/hojin_info_response.rb +249 -0
- data/lib/gbizinfo/models/hojin_info_update_info_response.rb +279 -0
- data/lib/gbizinfo/models/major_shareholders.rb +225 -0
- data/lib/gbizinfo/models/management_index.rb +455 -0
- data/lib/gbizinfo/models/patent_info.rb +257 -0
- data/lib/gbizinfo/models/procurement_info.rb +257 -0
- data/lib/gbizinfo/models/subsidy_info.rb +287 -0
- data/lib/gbizinfo/models/women_activity_infos.rb +265 -0
- data/lib/gbizinfo/models/workplace_base_infos.rb +265 -0
- data/lib/gbizinfo/models/workplace_info_bean.rb +232 -0
- data/lib/gbizinfo/version.rb +15 -0
- data/lib/gbizinfo.rb +57 -0
- data/openapi/root.yaml +1377 -0
- data/sig/gbizinfo.rbs +4 -0
- metadata +105 -0
data/openapi/root.yaml
ADDED
@@ -0,0 +1,1377 @@
|
|
1
|
+
openapi: 3.0.1
|
2
|
+
info:
|
3
|
+
title: gBizINFO REST API
|
4
|
+
description: <div>各REST APIはHTTPリクエストヘッダX-hojinInfo-api-tokenに動作確認用のAPIトークンDTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST
|
5
|
+
APIを利用する際は必ず、<a href='https://info.gbiz.go.jp/hojin/api_registration/form'>Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
6
|
+
termsOfService: /api
|
7
|
+
version: "1.0"
|
8
|
+
servers:
|
9
|
+
- url: https://info.gbiz.go.jp/hojin
|
10
|
+
tags:
|
11
|
+
- name: hojin-info-controller
|
12
|
+
description: Hojin Info Controller
|
13
|
+
paths:
|
14
|
+
/v1/hojin:
|
15
|
+
get:
|
16
|
+
tags:
|
17
|
+
- gBizINFO REST API
|
18
|
+
summary: gBizINFOに登録された法人を検索します.
|
19
|
+
description: gBizINFOに登録された法人を検索します。
|
20
|
+
operationId: searchInfoUsingGET
|
21
|
+
parameters:
|
22
|
+
- name: corporate_number
|
23
|
+
in: query
|
24
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
25
|
+
schema:
|
26
|
+
type: string
|
27
|
+
- name: name
|
28
|
+
in: query
|
29
|
+
description: "法人名:法人名を設定。\r\n入力された法人名を部分一致で検索。"
|
30
|
+
schema:
|
31
|
+
type: string
|
32
|
+
- name: exist_flg
|
33
|
+
in: query
|
34
|
+
description: "法人活動情報:以下のコードを設定。\r\ntrue あり \r\nfalse なし"
|
35
|
+
schema:
|
36
|
+
type: string
|
37
|
+
- name: corporate_type
|
38
|
+
in: query
|
39
|
+
description: "法人種別:以下のコードを設定。\r\n101 国の機関\r\n201 地方公共団体 \r\n301 株式会社\r\n302\
|
40
|
+
\ 有限会社\r\n303 合名会社\r\n304 合資会社\r\n305 合同会社\r\n399 その他の設立登記法人\r\n401 外国会社\
|
41
|
+
等\r\n499 その他\r\n複数の場合はカンマ区切りでコードを設定。"
|
42
|
+
schema:
|
43
|
+
type: string
|
44
|
+
- name: prefecture
|
45
|
+
in: query
|
46
|
+
description: 所在地(都道府県):JIS X 0401都道府県コードを設定。
|
47
|
+
schema:
|
48
|
+
type: string
|
49
|
+
- name: city
|
50
|
+
in: query
|
51
|
+
description: 所在地(市区町村):総務省地方公共団体コードの市区町村コードを設定。(prefecture設定必須)
|
52
|
+
schema:
|
53
|
+
type: string
|
54
|
+
- name: capital_stock_from
|
55
|
+
in: query
|
56
|
+
description: 資本金(以上):資本金の下限を設定。0以上の整数を設定。
|
57
|
+
schema:
|
58
|
+
type: string
|
59
|
+
- name: capital_stock_to
|
60
|
+
in: query
|
61
|
+
description: 資本金(以下):資本金の上限を設定。0以上の整数を設定。
|
62
|
+
schema:
|
63
|
+
type: string
|
64
|
+
- name: employee_number_from
|
65
|
+
in: query
|
66
|
+
description: 従業員数(以上):従業員数の下限を設定。0以上の整数を設定。
|
67
|
+
schema:
|
68
|
+
type: string
|
69
|
+
- name: employee_number_to
|
70
|
+
in: query
|
71
|
+
description: 従業員数(以下):従業員数の上限を設定。0以上の整数を設定。
|
72
|
+
schema:
|
73
|
+
type: string
|
74
|
+
- name: founded_year
|
75
|
+
in: query
|
76
|
+
description: "創業年・設立年:正の整数を設定。\r\n複数の場合はカンマ区切りで年を設定。"
|
77
|
+
schema:
|
78
|
+
type: string
|
79
|
+
- name: sales_area
|
80
|
+
in: query
|
81
|
+
description: "営業エリア:https://info.gbiz.go.jp/codelist/document/codelist.pdf\r\
|
82
|
+
\n地域対応表のgBizINFOのマスターコードを設定。 複数の場合はカンマ区切りでコードを設定。"
|
83
|
+
schema:
|
84
|
+
type: string
|
85
|
+
- name: business_item
|
86
|
+
in: query
|
87
|
+
description: "全省庁統一資格の営業品目:https://info.gbiz.go.jp/codelist/document/codelist.pdf\r\
|
88
|
+
\n営業品目コードを設定。\r\n複数の場合はカンマ区切りでコードを設定。"
|
89
|
+
schema:
|
90
|
+
type: string
|
91
|
+
- name: unified_qualification
|
92
|
+
in: query
|
93
|
+
description: 全省庁統一資格の資格等級(従来型):従来型の資格等級指定を行う場合に使用する。資格等級(物品の製造、物品の販売、役務の提供等、物品の買受け)のいずれかがA,B,C,Dであるものを指定。複数指定の場合は半角カンマ区切りで半角コードを設定。
|
94
|
+
schema:
|
95
|
+
type: string
|
96
|
+
- name: unified_qualification_sub01
|
97
|
+
in: query
|
98
|
+
description: 全省庁統一資格の資格等級(物品の製造):物品の製造をA,B,C,Dで指定。複数指定の場合は半角カンマ区切りで半角コードを設定。
|
99
|
+
schema:
|
100
|
+
type: string
|
101
|
+
- name: unified_qualification_sub02
|
102
|
+
in: query
|
103
|
+
description: 全省庁統一資格の資格等級(物品の販売):物品の販売をA,B,C,Dで指定。複数指定の場合は半角カンマ区切りで半角コードを設定。
|
104
|
+
schema:
|
105
|
+
type: string
|
106
|
+
- name: unified_qualification_sub03
|
107
|
+
in: query
|
108
|
+
description: 全省庁統一資格の資格等級(役務の提供等):役務の提供等をA,B,C,Dで指定。複数指定の場合は半角カンマ区切りで半角コードを設定。
|
109
|
+
schema:
|
110
|
+
type: string
|
111
|
+
- name: unified_qualification_sub04
|
112
|
+
in: query
|
113
|
+
description: 全省庁統一資格の資格等級(物品の買受け):物品の買受けをA,B,C,Dで指定。複数指定の場合は半角カンマ区切りで半角コードを設定。
|
114
|
+
schema:
|
115
|
+
type: string
|
116
|
+
- name: net_sales_summary_of_business_results_from
|
117
|
+
in: query
|
118
|
+
description: 売上高(以上):売上高の下限を設定。0以上の整数を設定。
|
119
|
+
schema:
|
120
|
+
type: string
|
121
|
+
- name: net_sales_summary_of_business_results_to
|
122
|
+
in: query
|
123
|
+
description: 売上高(以下):売上高の上限を設定。0以上の整数を設定。
|
124
|
+
schema:
|
125
|
+
type: string
|
126
|
+
- name: net_income_loss_summary_of_business_results_from
|
127
|
+
in: query
|
128
|
+
description: 当期純利益又は当期純損失(△)(以上):当期純利益又は当期純損失(△)の下限を設定。0以上の整数を設定。
|
129
|
+
schema:
|
130
|
+
type: string
|
131
|
+
- name: net_income_loss_summary_of_business_results_to
|
132
|
+
in: query
|
133
|
+
description: 当期純利益又は当期純損失(△)(以下):当期純利益又は当期純損失(△)の上限を設定。0以上の整数を設定。
|
134
|
+
schema:
|
135
|
+
type: string
|
136
|
+
- name: total_assets_summary_of_business_results_from
|
137
|
+
in: query
|
138
|
+
description: 総資産額(以上):総資産額の下限を設定。0以上の整数を設定。
|
139
|
+
schema:
|
140
|
+
type: string
|
141
|
+
- name: total_assets_summary_of_business_results_to
|
142
|
+
in: query
|
143
|
+
description: 総資産額(以下):総資産額の上限を設定。0以上の整数を設定。
|
144
|
+
schema:
|
145
|
+
type: string
|
146
|
+
- name: name_major_shareholders
|
147
|
+
in: query
|
148
|
+
description: "大株主名:大株主名を設定。\r\n入力された大株主名を部分一致で検索。"
|
149
|
+
schema:
|
150
|
+
type: string
|
151
|
+
- name: average_continuous_service_years
|
152
|
+
in: query
|
153
|
+
description: "平均継続勤務年数:以下のコードを設定。\r\nA:~5年\r\nB:6年~10年\r\nC:11年~20年\r\nD:\
|
154
|
+
21年~"
|
155
|
+
schema:
|
156
|
+
type: string
|
157
|
+
- name: average_age
|
158
|
+
in: query
|
159
|
+
description: "従業員の平均年齢:以下のコードを設定。\r\nA:~30歳\r\nB:31歳~45歳\r\nC:46歳~60歳\r\n\
|
160
|
+
D:61歳~"
|
161
|
+
schema:
|
162
|
+
type: string
|
163
|
+
- name: month_average_predetermined_overtime_hours
|
164
|
+
in: query
|
165
|
+
description: "月平均所定外労働時間:以下のコードを設定。\r\nA:20時間未満\r\nB:40時間未満\r\nC:40時間以上"
|
166
|
+
schema:
|
167
|
+
type: string
|
168
|
+
- name: female_workers_proportion
|
169
|
+
in: query
|
170
|
+
description: "労働者に占める女性労働者の割合:以下のコードを設定。\r\nA:~20%\r\nB:21%~40%\r\nC:41%~\
|
171
|
+
60%\r\nD:61%~"
|
172
|
+
schema:
|
173
|
+
type: string
|
174
|
+
- name: year
|
175
|
+
in: query
|
176
|
+
description: "年度:正の整数を設定。\r\n複数の場合はカンマ区切りで年を設定。"
|
177
|
+
schema:
|
178
|
+
type: string
|
179
|
+
- name: ministry
|
180
|
+
in: query
|
181
|
+
description: "担当府省:\r\n担当府省コードの内部コードを指定。複数の場合はカンマ区切りでコードを設定。\r\n内部コードは以下。\r\
|
182
|
+
\nhttps://info.gbiz.go.jp/common/data/setcodelist.pdf"
|
183
|
+
schema:
|
184
|
+
type: string
|
185
|
+
- name: source
|
186
|
+
in: query
|
187
|
+
description: "出典元:以下のコードを設定。\r\n1 調達\r\n2 表彰\r\n3 届出認定\r\n4 補助金\r\n5 特許\r\n\
|
188
|
+
6 財務\r\n複数の場合はカンマ区切りでコードを設定。"
|
189
|
+
schema:
|
190
|
+
type: string
|
191
|
+
- name: page
|
192
|
+
in: query
|
193
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1,上限値10。"
|
194
|
+
schema:
|
195
|
+
type: string
|
196
|
+
default: "1"
|
197
|
+
- name: limit
|
198
|
+
in: query
|
199
|
+
description: "検索結果の1ページあたりの件数:0以上の整数を設定。\r\n下限値0,上限値5000。"
|
200
|
+
schema:
|
201
|
+
type: string
|
202
|
+
default: "1000"
|
203
|
+
- name: X-hojinInfo-api-token
|
204
|
+
in: header
|
205
|
+
description: APIトークン
|
206
|
+
required: true
|
207
|
+
schema:
|
208
|
+
type: string
|
209
|
+
responses:
|
210
|
+
200:
|
211
|
+
description: OK
|
212
|
+
content:
|
213
|
+
application/json:
|
214
|
+
schema:
|
215
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
216
|
+
401:
|
217
|
+
description: Unauthorized
|
218
|
+
content: {}
|
219
|
+
403:
|
220
|
+
description: Forbidden
|
221
|
+
content: {}
|
222
|
+
404:
|
223
|
+
description: Not Found
|
224
|
+
content: {}
|
225
|
+
/v1/hojin/updateInfo:
|
226
|
+
get:
|
227
|
+
tags:
|
228
|
+
- gBizINFO REST API (Period-specified Search)
|
229
|
+
summary: gBizINFOから期間内に追加/更新された法人基本情報を取得します.
|
230
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
231
|
+
operationId: getUpdateInfoUsingGET
|
232
|
+
parameters:
|
233
|
+
- name: X-hojinInfo-api-token
|
234
|
+
in: header
|
235
|
+
description: APIトークン
|
236
|
+
required: true
|
237
|
+
schema:
|
238
|
+
type: string
|
239
|
+
- name: page
|
240
|
+
in: query
|
241
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
242
|
+
schema:
|
243
|
+
type: string
|
244
|
+
default: "1"
|
245
|
+
- name: from
|
246
|
+
in: query
|
247
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
248
|
+
required: true
|
249
|
+
schema:
|
250
|
+
type: string
|
251
|
+
- name: to
|
252
|
+
in: query
|
253
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
254
|
+
required: true
|
255
|
+
schema:
|
256
|
+
type: string
|
257
|
+
responses:
|
258
|
+
200:
|
259
|
+
description: OK
|
260
|
+
content:
|
261
|
+
application/json:
|
262
|
+
schema:
|
263
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
264
|
+
401:
|
265
|
+
description: Unauthorized
|
266
|
+
content: {}
|
267
|
+
403:
|
268
|
+
description: Forbidden
|
269
|
+
content: {}
|
270
|
+
404:
|
271
|
+
description: Not Found
|
272
|
+
content: {}
|
273
|
+
/v1/hojin/updateInfo/certification:
|
274
|
+
get:
|
275
|
+
tags:
|
276
|
+
- gBizINFO REST API (Period-specified Search)
|
277
|
+
summary: gBizINFOから期間内に追加/更新された届出・認定情報を取得します.
|
278
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
279
|
+
operationId: getCertificationUpdateInfoUsingGET
|
280
|
+
parameters:
|
281
|
+
- name: X-hojinInfo-api-token
|
282
|
+
in: header
|
283
|
+
description: APIトークン
|
284
|
+
required: true
|
285
|
+
schema:
|
286
|
+
type: string
|
287
|
+
- name: page
|
288
|
+
in: query
|
289
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
290
|
+
schema:
|
291
|
+
type: string
|
292
|
+
default: "1"
|
293
|
+
- name: from
|
294
|
+
in: query
|
295
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
296
|
+
required: true
|
297
|
+
schema:
|
298
|
+
type: string
|
299
|
+
- name: to
|
300
|
+
in: query
|
301
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
302
|
+
required: true
|
303
|
+
schema:
|
304
|
+
type: string
|
305
|
+
responses:
|
306
|
+
200:
|
307
|
+
description: OK
|
308
|
+
content:
|
309
|
+
application/json:
|
310
|
+
schema:
|
311
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
312
|
+
401:
|
313
|
+
description: Unauthorized
|
314
|
+
content: {}
|
315
|
+
403:
|
316
|
+
description: Forbidden
|
317
|
+
content: {}
|
318
|
+
404:
|
319
|
+
description: Not Found
|
320
|
+
content: {}
|
321
|
+
/v1/hojin/updateInfo/commendation:
|
322
|
+
get:
|
323
|
+
tags:
|
324
|
+
- gBizINFO REST API (Period-specified Search)
|
325
|
+
summary: gBizINFOから期間内に追加/更新された表彰情報を取得します.
|
326
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
327
|
+
operationId: getCommendationUpdateInfoUsingGET
|
328
|
+
parameters:
|
329
|
+
- name: X-hojinInfo-api-token
|
330
|
+
in: header
|
331
|
+
description: APIトークン
|
332
|
+
required: true
|
333
|
+
schema:
|
334
|
+
type: string
|
335
|
+
- name: page
|
336
|
+
in: query
|
337
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
338
|
+
schema:
|
339
|
+
type: string
|
340
|
+
default: "1"
|
341
|
+
- name: from
|
342
|
+
in: query
|
343
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
344
|
+
required: true
|
345
|
+
schema:
|
346
|
+
type: string
|
347
|
+
- name: to
|
348
|
+
in: query
|
349
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
350
|
+
required: true
|
351
|
+
schema:
|
352
|
+
type: string
|
353
|
+
responses:
|
354
|
+
200:
|
355
|
+
description: OK
|
356
|
+
content:
|
357
|
+
application/json:
|
358
|
+
schema:
|
359
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
360
|
+
401:
|
361
|
+
description: Unauthorized
|
362
|
+
content: {}
|
363
|
+
403:
|
364
|
+
description: Forbidden
|
365
|
+
content: {}
|
366
|
+
404:
|
367
|
+
description: Not Found
|
368
|
+
content: {}
|
369
|
+
/v1/hojin/updateInfo/finance:
|
370
|
+
get:
|
371
|
+
tags:
|
372
|
+
- gBizINFO REST API (Period-specified Search)
|
373
|
+
summary: gBizINFOから期間内に追加/更新された財務情報を取得します.
|
374
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
375
|
+
operationId: getFinanceUpdateInfoUsingGET
|
376
|
+
parameters:
|
377
|
+
- name: X-hojinInfo-api-token
|
378
|
+
in: header
|
379
|
+
description: APIトークン
|
380
|
+
required: true
|
381
|
+
schema:
|
382
|
+
type: string
|
383
|
+
- name: page
|
384
|
+
in: query
|
385
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
386
|
+
schema:
|
387
|
+
type: string
|
388
|
+
default: "1"
|
389
|
+
- name: from
|
390
|
+
in: query
|
391
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
392
|
+
required: true
|
393
|
+
schema:
|
394
|
+
type: string
|
395
|
+
- name: to
|
396
|
+
in: query
|
397
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
398
|
+
required: true
|
399
|
+
schema:
|
400
|
+
type: string
|
401
|
+
responses:
|
402
|
+
200:
|
403
|
+
description: OK
|
404
|
+
content:
|
405
|
+
application/json:
|
406
|
+
schema:
|
407
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
408
|
+
401:
|
409
|
+
description: Unauthorized
|
410
|
+
content: {}
|
411
|
+
403:
|
412
|
+
description: Forbidden
|
413
|
+
content: {}
|
414
|
+
404:
|
415
|
+
description: Not Found
|
416
|
+
content: {}
|
417
|
+
/v1/hojin/updateInfo/patent:
|
418
|
+
get:
|
419
|
+
tags:
|
420
|
+
- gBizINFO REST API (Period-specified Search)
|
421
|
+
summary: gBizINFOから期間内に追加/更新された特許情報を取得します.
|
422
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
423
|
+
operationId: getPatentUpdateInfoUsingGET
|
424
|
+
parameters:
|
425
|
+
- name: X-hojinInfo-api-token
|
426
|
+
in: header
|
427
|
+
description: APIトークン
|
428
|
+
required: true
|
429
|
+
schema:
|
430
|
+
type: string
|
431
|
+
- name: page
|
432
|
+
in: query
|
433
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
434
|
+
schema:
|
435
|
+
type: string
|
436
|
+
default: "1"
|
437
|
+
- name: from
|
438
|
+
in: query
|
439
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
440
|
+
required: true
|
441
|
+
schema:
|
442
|
+
type: string
|
443
|
+
- name: to
|
444
|
+
in: query
|
445
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
446
|
+
required: true
|
447
|
+
schema:
|
448
|
+
type: string
|
449
|
+
responses:
|
450
|
+
200:
|
451
|
+
description: OK
|
452
|
+
content:
|
453
|
+
application/json:
|
454
|
+
schema:
|
455
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
456
|
+
401:
|
457
|
+
description: Unauthorized
|
458
|
+
content: {}
|
459
|
+
403:
|
460
|
+
description: Forbidden
|
461
|
+
content: {}
|
462
|
+
404:
|
463
|
+
description: Not Found
|
464
|
+
content: {}
|
465
|
+
/v1/hojin/updateInfo/procurement:
|
466
|
+
get:
|
467
|
+
tags:
|
468
|
+
- gBizINFO REST API (Period-specified Search)
|
469
|
+
summary: gBizINFOから期間内に追加/更新された調達情報を取得します.
|
470
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
471
|
+
operationId: getProcurementUpdateInfoUsingGET
|
472
|
+
parameters:
|
473
|
+
- name: X-hojinInfo-api-token
|
474
|
+
in: header
|
475
|
+
description: APIトークン
|
476
|
+
required: true
|
477
|
+
schema:
|
478
|
+
type: string
|
479
|
+
- name: page
|
480
|
+
in: query
|
481
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
482
|
+
schema:
|
483
|
+
type: string
|
484
|
+
default: "1"
|
485
|
+
- name: from
|
486
|
+
in: query
|
487
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
488
|
+
required: true
|
489
|
+
schema:
|
490
|
+
type: string
|
491
|
+
- name: to
|
492
|
+
in: query
|
493
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
494
|
+
required: true
|
495
|
+
schema:
|
496
|
+
type: string
|
497
|
+
responses:
|
498
|
+
200:
|
499
|
+
description: OK
|
500
|
+
content:
|
501
|
+
application/json:
|
502
|
+
schema:
|
503
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
504
|
+
401:
|
505
|
+
description: Unauthorized
|
506
|
+
content: {}
|
507
|
+
403:
|
508
|
+
description: Forbidden
|
509
|
+
content: {}
|
510
|
+
404:
|
511
|
+
description: Not Found
|
512
|
+
content: {}
|
513
|
+
/v1/hojin/updateInfo/subsidy:
|
514
|
+
get:
|
515
|
+
tags:
|
516
|
+
- gBizINFO REST API (Period-specified Search)
|
517
|
+
summary: gBizINFOから期間内に追加/更新された補助金情報を取得します.
|
518
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
519
|
+
operationId: getSubsidyUpdateInfoUsingGET
|
520
|
+
parameters:
|
521
|
+
- name: X-hojinInfo-api-token
|
522
|
+
in: header
|
523
|
+
description: APIトークン
|
524
|
+
required: true
|
525
|
+
schema:
|
526
|
+
type: string
|
527
|
+
- name: page
|
528
|
+
in: query
|
529
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
530
|
+
schema:
|
531
|
+
type: string
|
532
|
+
default: "1"
|
533
|
+
- name: from
|
534
|
+
in: query
|
535
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
536
|
+
required: true
|
537
|
+
schema:
|
538
|
+
type: string
|
539
|
+
- name: to
|
540
|
+
in: query
|
541
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
542
|
+
required: true
|
543
|
+
schema:
|
544
|
+
type: string
|
545
|
+
responses:
|
546
|
+
200:
|
547
|
+
description: OK
|
548
|
+
content:
|
549
|
+
application/json:
|
550
|
+
schema:
|
551
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
552
|
+
401:
|
553
|
+
description: Unauthorized
|
554
|
+
content: {}
|
555
|
+
403:
|
556
|
+
description: Forbidden
|
557
|
+
content: {}
|
558
|
+
404:
|
559
|
+
description: Not Found
|
560
|
+
content: {}
|
561
|
+
/v1/hojin/updateInfo/workplace:
|
562
|
+
get:
|
563
|
+
tags:
|
564
|
+
- gBizINFO REST API (Period-specified Search)
|
565
|
+
summary: gBizINFOから期間内に追加/更新された職場情報を取得します.
|
566
|
+
description: 指定された期間内に追加/更新された情報を取得します。
|
567
|
+
operationId: getWorkplaceInformationUpdateInfoUsingGET
|
568
|
+
parameters:
|
569
|
+
- name: X-hojinInfo-api-token
|
570
|
+
in: header
|
571
|
+
description: APIトークン
|
572
|
+
required: true
|
573
|
+
schema:
|
574
|
+
type: string
|
575
|
+
- name: page
|
576
|
+
in: query
|
577
|
+
description: "検索結果のページ番号:正の整数を設定。\r\n下限値1。"
|
578
|
+
schema:
|
579
|
+
type: string
|
580
|
+
default: "1"
|
581
|
+
- name: from
|
582
|
+
in: query
|
583
|
+
description: 検索対象期間の開始日:yyyyMMdd形式を設定。
|
584
|
+
required: true
|
585
|
+
schema:
|
586
|
+
type: string
|
587
|
+
- name: to
|
588
|
+
in: query
|
589
|
+
description: 検索対象期間の終了日:yyyyMMdd形式を設定。
|
590
|
+
required: true
|
591
|
+
schema:
|
592
|
+
type: string
|
593
|
+
responses:
|
594
|
+
200:
|
595
|
+
description: OK
|
596
|
+
content:
|
597
|
+
application/json:
|
598
|
+
schema:
|
599
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
600
|
+
401:
|
601
|
+
description: Unauthorized
|
602
|
+
content: {}
|
603
|
+
403:
|
604
|
+
description: Forbidden
|
605
|
+
content: {}
|
606
|
+
404:
|
607
|
+
description: Not Found
|
608
|
+
content: {}
|
609
|
+
/v1/hojin/{corporate_number}:
|
610
|
+
get:
|
611
|
+
tags:
|
612
|
+
- gBizINFO REST API
|
613
|
+
summary: gBizINFOから法人基本情報を取得します.
|
614
|
+
description: 指定された法人番号の情報を取得します。
|
615
|
+
operationId: getUsingGET
|
616
|
+
parameters:
|
617
|
+
- name: X-hojinInfo-api-token
|
618
|
+
in: header
|
619
|
+
description: APIトークン
|
620
|
+
required: true
|
621
|
+
schema:
|
622
|
+
type: string
|
623
|
+
- name: corporate_number
|
624
|
+
in: path
|
625
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
626
|
+
required: true
|
627
|
+
schema:
|
628
|
+
type: string
|
629
|
+
responses:
|
630
|
+
200:
|
631
|
+
description: OK
|
632
|
+
content:
|
633
|
+
application/json:
|
634
|
+
schema:
|
635
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
636
|
+
401:
|
637
|
+
description: Unauthorized
|
638
|
+
content: {}
|
639
|
+
403:
|
640
|
+
description: Forbidden
|
641
|
+
content: {}
|
642
|
+
404:
|
643
|
+
description: Not Found
|
644
|
+
content: {}
|
645
|
+
/v1/hojin/{corporate_number}/certification:
|
646
|
+
get:
|
647
|
+
tags:
|
648
|
+
- gBizINFO REST API
|
649
|
+
summary: gBizINFOから届出・認定情報を取得します.
|
650
|
+
description: 指定された法人番号の情報を取得します。
|
651
|
+
operationId: getCertificationUsingGET
|
652
|
+
parameters:
|
653
|
+
- name: X-hojinInfo-api-token
|
654
|
+
in: header
|
655
|
+
description: APIトークン
|
656
|
+
required: true
|
657
|
+
schema:
|
658
|
+
type: string
|
659
|
+
- name: corporate_number
|
660
|
+
in: path
|
661
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
662
|
+
required: true
|
663
|
+
schema:
|
664
|
+
type: string
|
665
|
+
responses:
|
666
|
+
200:
|
667
|
+
description: OK
|
668
|
+
content:
|
669
|
+
application/json:
|
670
|
+
schema:
|
671
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
672
|
+
401:
|
673
|
+
description: Unauthorized
|
674
|
+
content: {}
|
675
|
+
403:
|
676
|
+
description: Forbidden
|
677
|
+
content: {}
|
678
|
+
404:
|
679
|
+
description: Not Found
|
680
|
+
content: {}
|
681
|
+
/v1/hojin/{corporate_number}/commendation:
|
682
|
+
get:
|
683
|
+
tags:
|
684
|
+
- gBizINFO REST API
|
685
|
+
summary: gBizINFOから表彰情報を取得します.
|
686
|
+
description: 指定された法人番号の情報を取得します。
|
687
|
+
operationId: getCommendationUsingGET
|
688
|
+
parameters:
|
689
|
+
- name: X-hojinInfo-api-token
|
690
|
+
in: header
|
691
|
+
description: APIトークン
|
692
|
+
required: true
|
693
|
+
schema:
|
694
|
+
type: string
|
695
|
+
- name: corporate_number
|
696
|
+
in: path
|
697
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
698
|
+
required: true
|
699
|
+
schema:
|
700
|
+
type: string
|
701
|
+
responses:
|
702
|
+
200:
|
703
|
+
description: OK
|
704
|
+
content:
|
705
|
+
application/json:
|
706
|
+
schema:
|
707
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
708
|
+
401:
|
709
|
+
description: Unauthorized
|
710
|
+
content: {}
|
711
|
+
403:
|
712
|
+
description: Forbidden
|
713
|
+
content: {}
|
714
|
+
404:
|
715
|
+
description: Not Found
|
716
|
+
content: {}
|
717
|
+
/v1/hojin/{corporate_number}/finance:
|
718
|
+
get:
|
719
|
+
tags:
|
720
|
+
- gBizINFO REST API
|
721
|
+
summary: gBizINFOから財務情報を取得します.
|
722
|
+
description: 指定された法人番号の情報を取得します。
|
723
|
+
operationId: getFinanceUsingGET
|
724
|
+
parameters:
|
725
|
+
- name: X-hojinInfo-api-token
|
726
|
+
in: header
|
727
|
+
description: APIトークン
|
728
|
+
required: true
|
729
|
+
schema:
|
730
|
+
type: string
|
731
|
+
- name: corporate_number
|
732
|
+
in: path
|
733
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
734
|
+
required: true
|
735
|
+
schema:
|
736
|
+
type: string
|
737
|
+
responses:
|
738
|
+
200:
|
739
|
+
description: OK
|
740
|
+
content:
|
741
|
+
application/json:
|
742
|
+
schema:
|
743
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
744
|
+
401:
|
745
|
+
description: Unauthorized
|
746
|
+
content: {}
|
747
|
+
403:
|
748
|
+
description: Forbidden
|
749
|
+
content: {}
|
750
|
+
404:
|
751
|
+
description: Not Found
|
752
|
+
content: {}
|
753
|
+
/v1/hojin/{corporate_number}/patent:
|
754
|
+
get:
|
755
|
+
tags:
|
756
|
+
- gBizINFO REST API
|
757
|
+
summary: gBizINFOから特許情報を取得します.
|
758
|
+
description: 指定された法人番号の情報を取得します。
|
759
|
+
operationId: getPatentUsingGET
|
760
|
+
parameters:
|
761
|
+
- name: X-hojinInfo-api-token
|
762
|
+
in: header
|
763
|
+
description: APIトークン
|
764
|
+
required: true
|
765
|
+
schema:
|
766
|
+
type: string
|
767
|
+
- name: corporate_number
|
768
|
+
in: path
|
769
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
770
|
+
required: true
|
771
|
+
schema:
|
772
|
+
type: string
|
773
|
+
responses:
|
774
|
+
200:
|
775
|
+
description: OK
|
776
|
+
content:
|
777
|
+
application/json:
|
778
|
+
schema:
|
779
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
780
|
+
401:
|
781
|
+
description: Unauthorized
|
782
|
+
content: {}
|
783
|
+
403:
|
784
|
+
description: Forbidden
|
785
|
+
content: {}
|
786
|
+
404:
|
787
|
+
description: Not Found
|
788
|
+
content: {}
|
789
|
+
/v1/hojin/{corporate_number}/procurement:
|
790
|
+
get:
|
791
|
+
tags:
|
792
|
+
- gBizINFO REST API
|
793
|
+
summary: gBizINFOから調達情報を取得します.
|
794
|
+
description: 指定された法人番号の情報を取得します。
|
795
|
+
operationId: getProcurementUsingGET
|
796
|
+
parameters:
|
797
|
+
- name: X-hojinInfo-api-token
|
798
|
+
in: header
|
799
|
+
description: APIトークン
|
800
|
+
required: true
|
801
|
+
schema:
|
802
|
+
type: string
|
803
|
+
- name: corporate_number
|
804
|
+
in: path
|
805
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
806
|
+
required: true
|
807
|
+
schema:
|
808
|
+
type: string
|
809
|
+
responses:
|
810
|
+
200:
|
811
|
+
description: OK
|
812
|
+
content:
|
813
|
+
application/json:
|
814
|
+
schema:
|
815
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
816
|
+
401:
|
817
|
+
description: Unauthorized
|
818
|
+
content: {}
|
819
|
+
403:
|
820
|
+
description: Forbidden
|
821
|
+
content: {}
|
822
|
+
404:
|
823
|
+
description: Not Found
|
824
|
+
content: {}
|
825
|
+
/v1/hojin/{corporate_number}/subsidy:
|
826
|
+
get:
|
827
|
+
tags:
|
828
|
+
- gBizINFO REST API
|
829
|
+
summary: gBizINFOから補助金情報を取得します.
|
830
|
+
description: 指定された法人番号の情報を取得します。
|
831
|
+
operationId: getSubsidyUsingGET
|
832
|
+
parameters:
|
833
|
+
- name: X-hojinInfo-api-token
|
834
|
+
in: header
|
835
|
+
description: APIトークン
|
836
|
+
required: true
|
837
|
+
schema:
|
838
|
+
type: string
|
839
|
+
- name: corporate_number
|
840
|
+
in: path
|
841
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
842
|
+
required: true
|
843
|
+
schema:
|
844
|
+
type: string
|
845
|
+
responses:
|
846
|
+
200:
|
847
|
+
description: OK
|
848
|
+
content:
|
849
|
+
application/json:
|
850
|
+
schema:
|
851
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
852
|
+
401:
|
853
|
+
description: Unauthorized
|
854
|
+
content: {}
|
855
|
+
403:
|
856
|
+
description: Forbidden
|
857
|
+
content: {}
|
858
|
+
404:
|
859
|
+
description: Not Found
|
860
|
+
content: {}
|
861
|
+
/v1/hojin/{corporate_number}/workplace:
|
862
|
+
get:
|
863
|
+
tags:
|
864
|
+
- gBizINFO REST API
|
865
|
+
summary: gBizINFOから職場情報を取得します.
|
866
|
+
description: 指定された法人番号の情報を取得します。
|
867
|
+
operationId: getWorkplaceInformationUsingGET
|
868
|
+
parameters:
|
869
|
+
- name: X-hojinInfo-api-token
|
870
|
+
in: header
|
871
|
+
description: APIトークン
|
872
|
+
required: true
|
873
|
+
schema:
|
874
|
+
type: string
|
875
|
+
- name: corporate_number
|
876
|
+
in: path
|
877
|
+
description: "法人番号:法人番号を設定。\r\n入力された法人番号を完全一致で検索。"
|
878
|
+
required: true
|
879
|
+
schema:
|
880
|
+
type: string
|
881
|
+
responses:
|
882
|
+
200:
|
883
|
+
description: OK
|
884
|
+
content:
|
885
|
+
application/json:
|
886
|
+
schema:
|
887
|
+
$ref: '#/components/schemas/HojinInfoResponse'
|
888
|
+
401:
|
889
|
+
description: Unauthorized
|
890
|
+
content: {}
|
891
|
+
403:
|
892
|
+
description: Forbidden
|
893
|
+
content: {}
|
894
|
+
404:
|
895
|
+
description: Not Found
|
896
|
+
content: {}
|
897
|
+
components:
|
898
|
+
schemas:
|
899
|
+
WomenActivityInfos:
|
900
|
+
type: object
|
901
|
+
properties:
|
902
|
+
female_share_of_manager:
|
903
|
+
type: integer
|
904
|
+
description: 女性管理職人数
|
905
|
+
format: int64
|
906
|
+
female_share_of_officers:
|
907
|
+
type: integer
|
908
|
+
description: 女性役員人数
|
909
|
+
format: int64
|
910
|
+
female_workers_proportion:
|
911
|
+
type: number
|
912
|
+
description: 労働者に占める女性労働者の割合
|
913
|
+
format: double
|
914
|
+
female_workers_proportion_type:
|
915
|
+
type: string
|
916
|
+
description: 労働者に占める女性労働者の割合種別
|
917
|
+
gender_total_of_manager:
|
918
|
+
type: integer
|
919
|
+
description: 管理職に占める女性の割合
|
920
|
+
format: int64
|
921
|
+
gender_total_of_officers:
|
922
|
+
type: integer
|
923
|
+
description: 役員全体人数(男女計)
|
924
|
+
format: int64
|
925
|
+
HojinInfo:
|
926
|
+
type: object
|
927
|
+
properties:
|
928
|
+
business_items:
|
929
|
+
type: array
|
930
|
+
description: 全省庁統一資格の営業品目
|
931
|
+
items:
|
932
|
+
type: string
|
933
|
+
business_summary:
|
934
|
+
type: string
|
935
|
+
description: 事業概要
|
936
|
+
capital_stock:
|
937
|
+
type: integer
|
938
|
+
description: 資本金
|
939
|
+
format: int64
|
940
|
+
certification:
|
941
|
+
type: array
|
942
|
+
description: 届出・認定情報
|
943
|
+
items:
|
944
|
+
$ref: '#/components/schemas/CertificationInfo'
|
945
|
+
close_cause:
|
946
|
+
type: string
|
947
|
+
description: 登記記録の閉鎖等の事由
|
948
|
+
close_date:
|
949
|
+
type: string
|
950
|
+
description: 登記記録の閉鎖等年月日
|
951
|
+
commendation:
|
952
|
+
type: array
|
953
|
+
description: 表彰情報
|
954
|
+
items:
|
955
|
+
$ref: '#/components/schemas/CommendationInfo'
|
956
|
+
company_size_female:
|
957
|
+
type: integer
|
958
|
+
description: 企業規模詳細(女)
|
959
|
+
format: int64
|
960
|
+
company_size_male:
|
961
|
+
type: integer
|
962
|
+
description: 企業規模詳細(男)
|
963
|
+
format: int64
|
964
|
+
company_url:
|
965
|
+
type: string
|
966
|
+
description: 企業ホームページ
|
967
|
+
corporate_number:
|
968
|
+
type: string
|
969
|
+
description: 法人番号
|
970
|
+
date_of_establishment:
|
971
|
+
type: string
|
972
|
+
description: 設立年月日
|
973
|
+
employee_number:
|
974
|
+
type: integer
|
975
|
+
description: 従業員数
|
976
|
+
format: int64
|
977
|
+
finance:
|
978
|
+
$ref: '#/components/schemas/Finance'
|
979
|
+
founding_year:
|
980
|
+
type: integer
|
981
|
+
description: 創業年
|
982
|
+
format: int32
|
983
|
+
kana:
|
984
|
+
type: string
|
985
|
+
description: 法人名フリガナ
|
986
|
+
location:
|
987
|
+
type: string
|
988
|
+
description: 本社所在地
|
989
|
+
name:
|
990
|
+
type: string
|
991
|
+
description: 法人名
|
992
|
+
name_en:
|
993
|
+
type: string
|
994
|
+
description: 法人名英語
|
995
|
+
number_of_activity:
|
996
|
+
type: string
|
997
|
+
description: 法人活動情報件数
|
998
|
+
patent:
|
999
|
+
type: array
|
1000
|
+
description: 特許情報
|
1001
|
+
items:
|
1002
|
+
$ref: '#/components/schemas/PatentInfo'
|
1003
|
+
postal_code:
|
1004
|
+
type: string
|
1005
|
+
description: 郵便番号
|
1006
|
+
procurement:
|
1007
|
+
type: array
|
1008
|
+
description: 調達情報
|
1009
|
+
items:
|
1010
|
+
$ref: '#/components/schemas/ProcurementInfo'
|
1011
|
+
qualification_grade:
|
1012
|
+
type: string
|
1013
|
+
description: 全省庁統一資格の資格等級(物品の製造、物品の販売、役務の提供等、物品の買受け)
|
1014
|
+
representative_name:
|
1015
|
+
type: string
|
1016
|
+
description: 法人代表者名
|
1017
|
+
representative_position:
|
1018
|
+
type: string
|
1019
|
+
description: 法人代表者役職
|
1020
|
+
status:
|
1021
|
+
type: string
|
1022
|
+
description: ステータス
|
1023
|
+
subsidy:
|
1024
|
+
type: array
|
1025
|
+
description: 補助金情報
|
1026
|
+
items:
|
1027
|
+
$ref: '#/components/schemas/SubsidyInfo'
|
1028
|
+
update_date:
|
1029
|
+
type: string
|
1030
|
+
description: 最終更新日
|
1031
|
+
workplace_info:
|
1032
|
+
$ref: '#/components/schemas/WorkplaceInfoBean'
|
1033
|
+
HojinInfoResponse:
|
1034
|
+
type: object
|
1035
|
+
properties:
|
1036
|
+
errors:
|
1037
|
+
type: array
|
1038
|
+
description: エラー情報(エラーがある場合に出力します。)
|
1039
|
+
items:
|
1040
|
+
$ref: '#/components/schemas/ApiError'
|
1041
|
+
hojin-infos:
|
1042
|
+
type: array
|
1043
|
+
description: gBizINFOデータ
|
1044
|
+
items:
|
1045
|
+
$ref: '#/components/schemas/HojinInfo'
|
1046
|
+
id:
|
1047
|
+
type: string
|
1048
|
+
description: リクエストid
|
1049
|
+
message:
|
1050
|
+
type: string
|
1051
|
+
description: メッセージ
|
1052
|
+
Finance:
|
1053
|
+
type: object
|
1054
|
+
properties:
|
1055
|
+
accounting_standards:
|
1056
|
+
type: string
|
1057
|
+
description: 会計基準
|
1058
|
+
fiscal_year_cover_page:
|
1059
|
+
type: string
|
1060
|
+
description: 期
|
1061
|
+
major_shareholders:
|
1062
|
+
type: array
|
1063
|
+
description: 大株主
|
1064
|
+
items:
|
1065
|
+
$ref: '#/components/schemas/MajorShareholders'
|
1066
|
+
management_index:
|
1067
|
+
type: array
|
1068
|
+
description: 財務
|
1069
|
+
items:
|
1070
|
+
$ref: '#/components/schemas/ManagementIndex'
|
1071
|
+
CertificationInfo:
|
1072
|
+
type: object
|
1073
|
+
properties:
|
1074
|
+
category:
|
1075
|
+
type: string
|
1076
|
+
description: 部門
|
1077
|
+
date_of_approval:
|
1078
|
+
type: string
|
1079
|
+
description: 認定日
|
1080
|
+
enterprise_scale:
|
1081
|
+
type: string
|
1082
|
+
description: 企業規模
|
1083
|
+
expiration_date:
|
1084
|
+
type: string
|
1085
|
+
description: 有効期限
|
1086
|
+
government_departments:
|
1087
|
+
type: string
|
1088
|
+
description: 府省
|
1089
|
+
target:
|
1090
|
+
type: string
|
1091
|
+
description: 対象
|
1092
|
+
title:
|
1093
|
+
type: string
|
1094
|
+
description: 届出認定等
|
1095
|
+
CommendationInfo:
|
1096
|
+
type: object
|
1097
|
+
properties:
|
1098
|
+
category:
|
1099
|
+
type: string
|
1100
|
+
description: 部門
|
1101
|
+
date_of_commendation:
|
1102
|
+
type: string
|
1103
|
+
description: 年月日
|
1104
|
+
government_departments:
|
1105
|
+
type: string
|
1106
|
+
description: 府省
|
1107
|
+
target:
|
1108
|
+
type: string
|
1109
|
+
description: 受賞対象
|
1110
|
+
title:
|
1111
|
+
type: string
|
1112
|
+
description: 表彰名
|
1113
|
+
HashMap«string,string»:
|
1114
|
+
type: object
|
1115
|
+
additionalProperties:
|
1116
|
+
type: string
|
1117
|
+
CompatibilityOfChildcareAndWork:
|
1118
|
+
type: object
|
1119
|
+
properties:
|
1120
|
+
maternity_leave_acquisition_num:
|
1121
|
+
type: integer
|
1122
|
+
description: 育児休業取得者数(女性)
|
1123
|
+
format: int64
|
1124
|
+
number_of_maternity_leave:
|
1125
|
+
type: integer
|
1126
|
+
description: 育児休業対象者数(女性)
|
1127
|
+
format: int64
|
1128
|
+
number_of_paternity_leave:
|
1129
|
+
type: integer
|
1130
|
+
description: 育児休業対象者数(男性)
|
1131
|
+
format: int64
|
1132
|
+
paternity_leave_acquisition_num:
|
1133
|
+
type: integer
|
1134
|
+
description: 育児休業取得者数(男性)
|
1135
|
+
format: int64
|
1136
|
+
PatentInfo:
|
1137
|
+
type: object
|
1138
|
+
properties:
|
1139
|
+
application_date:
|
1140
|
+
type: string
|
1141
|
+
description: 出願年月日
|
1142
|
+
application_number:
|
1143
|
+
type: string
|
1144
|
+
description: 出願番号
|
1145
|
+
classifications:
|
1146
|
+
type: array
|
1147
|
+
description: 分類
|
1148
|
+
items:
|
1149
|
+
$ref: '#/components/schemas/HashMap«string,string»'
|
1150
|
+
patent_type:
|
1151
|
+
type: string
|
1152
|
+
description: 特許/意匠/商標
|
1153
|
+
title:
|
1154
|
+
type: string
|
1155
|
+
description: 発明の名称(等)/意匠に係る物品/表示用商標
|
1156
|
+
MajorShareholders:
|
1157
|
+
type: object
|
1158
|
+
properties:
|
1159
|
+
name_major_shareholders:
|
1160
|
+
type: string
|
1161
|
+
description: 企業名もしくは出資者
|
1162
|
+
shareholding_ratio:
|
1163
|
+
type: number
|
1164
|
+
description: 出資比率
|
1165
|
+
format: double
|
1166
|
+
SubsidyInfo:
|
1167
|
+
type: object
|
1168
|
+
properties:
|
1169
|
+
amount:
|
1170
|
+
type: string
|
1171
|
+
description: 金額
|
1172
|
+
date_of_approval:
|
1173
|
+
type: string
|
1174
|
+
description: 認定日
|
1175
|
+
government_departments:
|
1176
|
+
type: string
|
1177
|
+
description: 府省
|
1178
|
+
joint_signatures:
|
1179
|
+
type: array
|
1180
|
+
description: 連名
|
1181
|
+
items:
|
1182
|
+
type: string
|
1183
|
+
note:
|
1184
|
+
type: string
|
1185
|
+
description: 備考
|
1186
|
+
subsidy_resource:
|
1187
|
+
type: string
|
1188
|
+
description: 補助金財源
|
1189
|
+
target:
|
1190
|
+
type: string
|
1191
|
+
description: 対象
|
1192
|
+
title:
|
1193
|
+
type: string
|
1194
|
+
description: 補助金等
|
1195
|
+
WorkplaceInfoBean:
|
1196
|
+
type: object
|
1197
|
+
properties:
|
1198
|
+
base_infos:
|
1199
|
+
$ref: '#/components/schemas/WorkplaceBaseInfos'
|
1200
|
+
compatibility_of_childcare_and_work:
|
1201
|
+
$ref: '#/components/schemas/CompatibilityOfChildcareAndWork'
|
1202
|
+
women_activity_infos:
|
1203
|
+
$ref: '#/components/schemas/WomenActivityInfos'
|
1204
|
+
ApiError:
|
1205
|
+
type: object
|
1206
|
+
properties:
|
1207
|
+
item:
|
1208
|
+
type: string
|
1209
|
+
description: エラー箇所(項目)
|
1210
|
+
message:
|
1211
|
+
type: string
|
1212
|
+
description: エラーメッセージ
|
1213
|
+
ManagementIndex:
|
1214
|
+
type: object
|
1215
|
+
properties:
|
1216
|
+
capital_stock_summary_of_business_results:
|
1217
|
+
type: integer
|
1218
|
+
description: 資本金
|
1219
|
+
format: int64
|
1220
|
+
capital_stock_summary_of_business_results_unit_ref:
|
1221
|
+
type: string
|
1222
|
+
description: 資本金(単位)
|
1223
|
+
gross_operating_revenue_summary_of_business_results:
|
1224
|
+
type: integer
|
1225
|
+
description: 営業総収入
|
1226
|
+
format: int64
|
1227
|
+
gross_operating_revenue_summary_of_business_results_unit_ref:
|
1228
|
+
type: string
|
1229
|
+
description: 営業総収入(単位)
|
1230
|
+
net_assets_summary_of_business_results:
|
1231
|
+
type: integer
|
1232
|
+
description: 純資産額
|
1233
|
+
format: int64
|
1234
|
+
net_assets_summary_of_business_results_unit_ref:
|
1235
|
+
type: string
|
1236
|
+
description: 純資産額(単位)
|
1237
|
+
net_income_loss_summary_of_business_results:
|
1238
|
+
type: integer
|
1239
|
+
description: 当期純利益又は当期純損失(△)
|
1240
|
+
format: int64
|
1241
|
+
net_income_loss_summary_of_business_results_unit_ref:
|
1242
|
+
type: string
|
1243
|
+
description: 当期純利益又は当期純損失(△)(単位)
|
1244
|
+
net_premiums_written_summary_of_business_results_ins:
|
1245
|
+
type: integer
|
1246
|
+
description: 正味収入保険料
|
1247
|
+
format: int64
|
1248
|
+
net_premiums_written_summary_of_business_results_ins_unit_ref:
|
1249
|
+
type: string
|
1250
|
+
description: 正味収入保険料(単位)
|
1251
|
+
net_sales_summary_of_business_results:
|
1252
|
+
type: integer
|
1253
|
+
description: 売上高
|
1254
|
+
format: int64
|
1255
|
+
net_sales_summary_of_business_results_unit_ref:
|
1256
|
+
type: string
|
1257
|
+
description: 売上高(単位)
|
1258
|
+
number_of_employees:
|
1259
|
+
type: integer
|
1260
|
+
description: 従業員数
|
1261
|
+
format: int64
|
1262
|
+
number_of_employees_unit_ref:
|
1263
|
+
type: string
|
1264
|
+
description: 従業員数(単位)
|
1265
|
+
operating_revenue1_summary_of_business_results:
|
1266
|
+
type: integer
|
1267
|
+
description: 営業収益
|
1268
|
+
format: int64
|
1269
|
+
operating_revenue1_summary_of_business_results_unit_ref:
|
1270
|
+
type: string
|
1271
|
+
description: 営業収益(単位)
|
1272
|
+
operating_revenue2_summary_of_business_results:
|
1273
|
+
type: integer
|
1274
|
+
description: 営業収入
|
1275
|
+
format: int64
|
1276
|
+
operating_revenue2_summary_of_business_results_unit_ref:
|
1277
|
+
type: string
|
1278
|
+
description: 営業収入(単位)
|
1279
|
+
ordinary_income_loss_summary_of_business_results:
|
1280
|
+
type: integer
|
1281
|
+
description: 経常利益又は経常損失(△)
|
1282
|
+
format: int64
|
1283
|
+
ordinary_income_loss_summary_of_business_results_unit_ref:
|
1284
|
+
type: string
|
1285
|
+
description: 経常利益又は経常損失(△)(単位)
|
1286
|
+
ordinary_income_summary_of_business_results:
|
1287
|
+
type: integer
|
1288
|
+
description: 経常収益
|
1289
|
+
format: int64
|
1290
|
+
ordinary_income_summary_of_business_results_unit_ref:
|
1291
|
+
type: string
|
1292
|
+
description: 経常収益(単位)
|
1293
|
+
period:
|
1294
|
+
type: string
|
1295
|
+
description: 回次
|
1296
|
+
total_assets_summary_of_business_results:
|
1297
|
+
type: integer
|
1298
|
+
description: 総資産額
|
1299
|
+
format: int64
|
1300
|
+
total_assets_summary_of_business_results_unit_ref:
|
1301
|
+
type: string
|
1302
|
+
description: 総資産額(単位)
|
1303
|
+
WorkplaceBaseInfos:
|
1304
|
+
type: object
|
1305
|
+
properties:
|
1306
|
+
average_age:
|
1307
|
+
type: number
|
1308
|
+
description: 従業員の平均年齢
|
1309
|
+
format: double
|
1310
|
+
average_continuous_service_years:
|
1311
|
+
type: number
|
1312
|
+
description: 正社員の平均継続勤務年数
|
1313
|
+
format: double
|
1314
|
+
average_continuous_service_years_Female:
|
1315
|
+
type: number
|
1316
|
+
description: 平均継続勤務年数-女性
|
1317
|
+
format: double
|
1318
|
+
average_continuous_service_years_Male:
|
1319
|
+
type: number
|
1320
|
+
description: 平均継続勤務年数-男性
|
1321
|
+
format: double
|
1322
|
+
average_continuous_service_years_type:
|
1323
|
+
type: string
|
1324
|
+
description: 平均継続勤務年数種別
|
1325
|
+
month_average_predetermined_overtime_hours:
|
1326
|
+
type: number
|
1327
|
+
description: 月平均所定外労働時間
|
1328
|
+
format: double
|
1329
|
+
HojinInfoUpdateInfoResponse:
|
1330
|
+
type: object
|
1331
|
+
properties:
|
1332
|
+
errors:
|
1333
|
+
type: array
|
1334
|
+
description: エラー情報(エラーがある場合に出力します。)
|
1335
|
+
items:
|
1336
|
+
$ref: '#/components/schemas/ApiError'
|
1337
|
+
hojin-infos:
|
1338
|
+
type: array
|
1339
|
+
description: gBizINFOデータ
|
1340
|
+
items:
|
1341
|
+
$ref: '#/components/schemas/HojinInfo'
|
1342
|
+
id:
|
1343
|
+
type: string
|
1344
|
+
description: リクエストid
|
1345
|
+
message:
|
1346
|
+
type: string
|
1347
|
+
description: メッセージ
|
1348
|
+
pageNumber:
|
1349
|
+
type: string
|
1350
|
+
description: ページ番号
|
1351
|
+
totalCount:
|
1352
|
+
type: string
|
1353
|
+
description: 総件数
|
1354
|
+
totalPage:
|
1355
|
+
type: string
|
1356
|
+
description: 総ページ数
|
1357
|
+
ProcurementInfo:
|
1358
|
+
type: object
|
1359
|
+
properties:
|
1360
|
+
amount:
|
1361
|
+
type: integer
|
1362
|
+
description: 金額
|
1363
|
+
format: int64
|
1364
|
+
date_of_order:
|
1365
|
+
type: string
|
1366
|
+
description: 受注日
|
1367
|
+
government_departments:
|
1368
|
+
type: string
|
1369
|
+
description: 府省
|
1370
|
+
joint_signatures:
|
1371
|
+
type: array
|
1372
|
+
description: 連名
|
1373
|
+
items:
|
1374
|
+
type: string
|
1375
|
+
title:
|
1376
|
+
type: string
|
1377
|
+
description: 事業名
|