Skip to content

Commit d6f520d

Browse files
committed
Correction of Linter error (removal of trailing spaces)
1 parent b82f63a commit d6f520d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

code/API_definitions/dn-accesses.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ paths:
1616

1717
/accesses:
1818
get:
19-
tags:
19+
tags:
2020
- Accesses
2121
summary: Get a list of device accesses to dedicated networks, optionally filtered for a given device and/or for a given dedicated network
2222
operationId: listNetworkAccesses
@@ -25,7 +25,7 @@ paths:
2525
in: query
2626
description: Dedicated network id
2727
schema:
28-
$ref: 'dn-networks.yaml#/components/schemas/NetworkId'
28+
$ref: 'dn-networks.yaml#/components/schemas/NetworkId'
2929
- $ref: "#/components/parameters/x-device"
3030
- $ref: "#/components/parameters/x-correlator"
3131
responses:
@@ -35,7 +35,7 @@ paths:
3535
application/json:
3636
schema:
3737
type: array
38-
items:
38+
items:
3939
$ref: '#/components/schemas/NetworkAccessInfo'
4040
"400":
4141
$ref: "#/components/responses/Generic400"
@@ -50,7 +50,7 @@ paths:
5050
"503":
5151
$ref: "#/components/responses/Generic503"
5252
post:
53-
tags:
53+
tags:
5454
- Accesses
5555
summary: Create a device access to a dedicated network with given configuration
5656
operationId: createNetworkAccess
@@ -87,7 +87,7 @@ paths:
8787

8888
/accesses/{accessId}:
8989
get:
90-
tags:
90+
tags:
9191
- Accesses
9292
summary: Get a device access to the dedicated network and its configuration
9393
operationId: readNetworkAccess
@@ -119,7 +119,7 @@ paths:
119119
$ref: "#/components/responses/Generic503"
120120

121121
delete:
122-
tags:
122+
tags:
123123
- Accesses
124124
summary: Delete a device access to the dedicated network
125125
operationId: deleteNetworkAccess
@@ -170,13 +170,13 @@ components:
170170
type: string
171171

172172
x-device:
173-
description: |
173+
description: |
174174
Device object represented in a header.
175175
It is serialized according to RFC 8941 as a structured field value where
176176
the Device object is a dictionary, with the following additonal provisions:
177177
- property names are changed to lower case to comply with the RFC
178178
- serializing property values must comply with the RFC depending on the type, and in particular:
179-
- if the property value is a string which contains only ASCII characters, the string can be serialized as String,
179+
- if the property value is a string which contains only ASCII characters, the string can be serialized as String,
180180
as per section 3.3.3 of the RFC
181181
- if the property value is a string and contains non-ASCII characters, the string must be serialized as Byte Sequence using UTF-8 encoding,
182182
as per section 3.3.5 of the RFC
@@ -204,12 +204,12 @@ components:
204204
qosProfiles:
205205
description: (Optional) List of supported QOS profiles usable for the device. When absent, all QosProfiles of the Network are supported. Only a subset of the QOS profiles of the network is allowed
206206
type: array
207-
items:
207+
items:
208208
type: string
209209
minItems: 1
210210
defaultQosProfile:
211211
description: (Optional) The default QOS profile of a device access. When absent, the defaultQosProfile of the Network is used
212-
type: string
212+
type: string
213213
required:
214214
- networkId
215215
- device

0 commit comments

Comments
 (0)