blob: 2a7ef5bf3ae66e2d0afdc509e24944d9f6facee5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
configuration:
get:
operationId: getConfiguration
description: Returns the entire contents of the Application Configuration.
tags:
- Configuration
summary: Get the Application Configuration (getConfiguration)
responses:
"200":
content:
application/json:
schema:
type: string
description: OK - Application configuration received
"404":
$ref: 'responses.yaml#/responses/404'
put:
operationId: putConfiguration
description: >
Replace the current Application Configuration with a new configuration.
The new configuration, if accepted, will take effect after a short delay.
The new configuration must comply with the Application Configuration schema,
which can be found from the the Application Documentation (Developer Guide)
tags:
- Configuration
summary: Set/Replace the Application Configuration (putConfiguration)
requestBody:
content:
application/json:
schema:
type: object
required: true
responses:
"200":
content:
'application/json':
schema:
$ref: 'schemas.yaml#/schemas/void'
description: OK - Configuration updated
"400":
$ref: 'responses.yaml#/responses/400'
|