@@ -179,6 +179,10 @@ components:
179
179
schema :
180
180
$ref : " #/components/schemas/ErrorRefreshTokenExpired"
181
181
schemas :
182
+ ArrayOfDateRanges :
183
+ type : array
184
+ items :
185
+ $ref : " #/components/schemas/DateRange"
182
186
ArrayOfProjectTaskStatisticsHistory :
183
187
type : array
184
188
items :
@@ -275,6 +279,18 @@ components:
275
279
$ref : ' #/components/schemas/Errors'
276
280
ErrorUnderMaintenance :
277
281
$ref : ' #/components/schemas/Errors'
282
+ DateRange :
283
+ type : object
284
+ description : 日付の期間
285
+ properties :
286
+ from :
287
+ type : string
288
+ format : date
289
+ description : 区間開始日(ISO 8601 拡張形式)
290
+ to :
291
+ type : string
292
+ format : date
293
+ description : 区間終了日(ISO 8601 拡張形式)
278
294
Message :
279
295
type : object
280
296
properties :
@@ -1230,6 +1246,17 @@ components:
1230
1246
$ref : " #/components/schemas/PluginId"
1231
1247
description : |
1232
1248
カスタムアノテーション仕様のプラグインID。
1249
+ editor_version :
1250
+ type : string
1251
+ description : |
1252
+ 標準アノテーションエディタのバージョン。
1253
+
1254
+ * `stable`
1255
+ * 安定版。通常はこちらを利用してください。
1256
+ * `preview`
1257
+ * 最新版。新機能やUI変更の先行リリース版。
1258
+
1259
+ プロジェクト更新時に未指定の場合は `stable` が指定されたものとみなします。
1233
1260
ProjectSummary :
1234
1261
type : object
1235
1262
properties :
@@ -3792,14 +3819,18 @@ components:
3792
3819
$ref : " #/components/schemas/AdditionalData"
3793
3820
updated_from :
3794
3821
description : |
3795
- 開始日・終了日を含む区間[updated_from, updated_to]でアノテーションの更新日を絞り込むときに使用する、開始日。updated_toより後ろに指定された場合、期間指定は開始日・終了日を含む区間[updated_to, updated_from]となる。未指定の場合、本日であるとして扱われる。
3822
+ 開始日・終了日を含む区間[updated_from, updated_to]でアノテーションの更新日を絞り込むときに使用する、開始日(ISO 8601 拡張形式または基本形式)。
3823
+
3824
+ `updated_to` より後の日付が指定された場合、期間指定は開始日・終了日を含む区間[updated_to, updated_from]となる。未指定の場合、未指定の場合、API実行日(JST)の日付が指定されたものとして扱われる。
3796
3825
type : string
3797
- example : " 20191010 "
3826
+ format : date
3798
3827
updated_to :
3799
3828
description : |
3800
- 開始日・終了日を含む区間[updated_from, updated_to]でアノテーションの更新日を絞り込むときに使用する、終了日。未指定の場合、本日であるとして扱われる。
3829
+ 開始日・終了日を含む区間[updated_from, updated_to]でアノテーションの更新日を絞り込むときに使用する、終了日(ISO 8601 拡張形式または基本形式)。
3830
+
3831
+ 未指定の場合、API実行日(JST)の日付が指定されたものとして扱われる。
3801
3832
type : string
3802
- example : " 20191010 "
3833
+ format : date
3803
3834
Annotation :
3804
3835
type : object
3805
3836
required :
@@ -4722,14 +4753,12 @@ components:
4722
4753
- annotator_action_required
4723
4754
- no_correction_required
4724
4755
- error_corrected
4725
- - no_comment_inspection
4726
4756
description : |
4727
4757
##### スレッドの先頭のコメントである(`parent_inspection_id` に値がない)場合
4728
4758
4729
4759
* `annotator_action_required` - 未処置。`annotation`フェーズ担当者が何らかの回答をする必要あり
4730
4760
* `no_correction_required` - 処置不要。`annotation`フェーズ担当者が、検査コメントによる修正は不要、と回答した
4731
4761
* `error_corrected` - 修正済み。`annotation`フェーズ担当者が、検査コメントの指示どおり修正した
4732
- * `no_comment_inspection` - 作成途中。検査コメントの中身が未入力
4733
4762
4734
4763
##### 返信コメントである(`parent_inspection_id` に値がある)場合
4735
4764
0 commit comments