File tree Expand file tree Collapse file tree 1 file changed +32
-3
lines changed Expand file tree Collapse file tree 1 file changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -3145,6 +3145,7 @@ paths:
3145
3145
required : true
3146
3146
schema :
3147
3147
type : string
3148
+ pattern : ' ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$'
3148
3149
nullable : false
3149
3150
requestBody :
3150
3151
content :
@@ -3179,21 +3180,49 @@ paths:
3179
3180
responses :
3180
3181
' 200 ' :
3181
3182
description : ' Placeholder response'
3182
- ' /v1/group-attributes/{id} ' :
3183
3183
delete :
3184
3184
summary : ' Remove selected attribute'
3185
3185
description : ' Remove selected attribute'
3186
3186
operationId : groupExternalAttributesPresenterActionRemove
3187
3187
parameters :
3188
3188
-
3189
- name : id
3189
+ name : groupId
3190
3190
in : path
3191
- description : ' Identifier of the external attribute. '
3191
+ description : ' '
3192
3192
required : true
3193
3193
schema :
3194
3194
type : string
3195
3195
pattern : ' ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$'
3196
3196
nullable : false
3197
+ -
3198
+ name : service
3199
+ in : query
3200
+ description : ' Identifier of the external service creating the attribute'
3201
+ required : true
3202
+ schema :
3203
+ type : string
3204
+ maxLength : 32
3205
+ minLength : 1
3206
+ nullable : false
3207
+ -
3208
+ name : key
3209
+ in : query
3210
+ description : ' Key of the attribute (must be valid identifier)'
3211
+ required : true
3212
+ schema :
3213
+ type : string
3214
+ maxLength : 32
3215
+ minLength : 1
3216
+ nullable : false
3217
+ -
3218
+ name : value
3219
+ in : query
3220
+ description : ' Value of the attribute (arbitrary string)'
3221
+ required : true
3222
+ schema :
3223
+ type : string
3224
+ maxLength : 255
3225
+ nullable : false
3197
3226
responses :
3198
3227
' 200 ' :
3199
3228
description : ' Placeholder response'
You can’t perform that action at this time.
0 commit comments