File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
### Fixed
10
10
11
11
- ` GET /file_formats ` : Base paramater on top of normal JSON Schema, not Process JSON Schema
12
+ - ` PATCH /services/{service_id} ` and ` PATCH /jobs/{job_id} ` : Explicitly allow updating back-end specific properties (as in ` POST ` )
13
+ - ` GET /services/{service_id} ` and ` GET /jobs/{job_id} ` : Explicitly allow listing back-end specific properties (as provided in ` POST ` )
12
14
13
15
## [ 1.2.0] - 2021-05-25
14
16
Original file line number Diff line number Diff line change @@ -2789,6 +2789,8 @@ paths:
2789
2789
$ref : ' #/components/schemas/budget_update'
2790
2790
log_level :
2791
2791
$ref : ' #/components/schemas/min_log_level_update'
2792
+ additionalProperties :
2793
+ description : You can add additional back-end specific properties here.
2792
2794
description : The data to change for the specified secondary web service.
2793
2795
get :
2794
2796
summary : Full metadata for a service
@@ -2810,7 +2812,9 @@ paths:
2810
2812
- configuration
2811
2813
- attributes
2812
2814
allOf :
2813
- - $ref : ' #/components/schemas/service'
2815
+ - $ref : ' #/components/schemas/service'
2816
+ additionalProperties :
2817
+ description : You can list additional back-end specific properties here.
2814
2818
4XX :
2815
2819
$ref : ' #/components/responses/client_error_auth'
2816
2820
5XX :
@@ -3017,6 +3021,8 @@ paths:
3017
3021
$ref : ' #/components/schemas/budget_update'
3018
3022
log_level :
3019
3023
$ref : ' #/components/schemas/min_log_level_update'
3024
+ additionalProperties :
3025
+ description : You can add additional back-end specific properties here.
3020
3026
description : Specifies the job details to update.
3021
3027
get :
3022
3028
summary : Full metadata for a batch job
@@ -3038,6 +3044,8 @@ paths:
3038
3044
- process
3039
3045
allOf :
3040
3046
- $ref : ' #/components/schemas/batch_job'
3047
+ additionalProperties :
3048
+ description : You can list additional back-end specific properties here.
3041
3049
4XX :
3042
3050
$ref : ' #/components/responses/client_error_auth'
3043
3051
5XX :
You can’t perform that action at this time.
0 commit comments