@digipair/skill-s3 0.95.7 → 0.97.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/schema.fr.json +263 -97
  3. package/schema.json +321 -104
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-s3",
3
- "version": "0.95.7",
3
+ "version": "0.97.0",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
package/schema.fr.json CHANGED
@@ -10,7 +10,9 @@
10
10
  "paths": {
11
11
  "/upload": {
12
12
  "post": {
13
- "tags": ["service"],
13
+ "tags": [
14
+ "service"
15
+ ],
14
16
  "summary": "Envoyer un fichier",
15
17
  "description": "Envoie un fichier dans un bucket S3",
16
18
  "parameters": [
@@ -19,128 +21,292 @@
19
21
  "summary": "Nom du bucket",
20
22
  "required": true,
21
23
  "description": "Nom du bucket S3 cible",
22
- "schema": { "type": "string" }
24
+ "schema": {
25
+ "type": "string"
26
+ }
23
27
  },
24
28
  {
25
29
  "name": "key",
26
30
  "summary": "Clé de l'objet",
27
31
  "required": true,
28
32
  "description": "Clé (chemin) sous laquelle le fichier sera stocké",
29
- "schema": { "type": "string" }
33
+ "schema": {
34
+ "type": "string"
35
+ }
30
36
  },
31
37
  {
32
38
  "name": "content",
33
39
  "summary": "Contenu en base64",
34
40
  "required": true,
35
41
  "description": "Contenu encodé en base64 du fichier (avec préfixe data URI)",
36
- "schema": { "type": "string" }
42
+ "schema": {
43
+ "type": "string"
44
+ }
37
45
  },
38
46
  {
39
47
  "name": "config",
40
48
  "summary": "Configuration AWS",
41
49
  "required": false,
42
50
  "description": "Configuration du client AWS SDK (optionnelle)",
43
- "schema": { "type": "object" }
51
+ "schema": {
52
+ "type": "object"
53
+ }
44
54
  }
45
55
  ],
46
- "x-events": []
47
- }
48
- },
49
- "/download": {
50
- "post": {
51
- "tags": ["service"],
52
- "summary": "Télécharger un fichier",
53
- "description": "Télécharge un fichier depuis un bucket S3",
54
- "parameters": [
55
- {
56
- "name": "bucket",
57
- "summary": "Nom du bucket",
58
- "required": true,
59
- "description": "Nom du bucket S3",
60
- "schema": { "type": "string" }
61
- },
62
- {
63
- "name": "key",
64
- "summary": "Clé de l'objet",
65
- "required": true,
66
- "description": "Clé (chemin) du fichier à télécharger",
67
- "schema": { "type": "string" }
68
- },
69
- {
70
- "name": "config",
71
- "summary": "Configuration AWS",
72
- "required": false,
73
- "description": "Configuration du client AWS SDK (optionnelle)",
74
- "schema": { "type": "object" }
56
+ "responses": {
57
+ "200": {
58
+ "description": "Réponse AWS S3 PutObjectCommand",
59
+ "content": {
60
+ "application/json": {
61
+ "schema": {
62
+ "type": "object",
63
+ "properties": {
64
+ "ETag": {
65
+ "type": "string",
66
+ "description": "Étiquette d'entité pour l'objet téléchargé"
67
+ },
68
+ "ServerSideEncryption": {
69
+ "type": "string",
70
+ "description": "Chiffrement côté serveur utilisé"
71
+ },
72
+ "VersionId": {
73
+ "type": "string",
74
+ "description": "ID de version de l'objet (si le versioning est activé)"
75
+ }
76
+ }
77
+ "ETag": "\"1234567890abcdef1234567890abcdef\"",
78
+ "ServerSideEncryption": "AES256",
79
+ "VersionId": "abc123def456"
80
+ }
81
+ }
82
+ }
75
83
  }
76
- ],
77
- "x-events": []
78
- }
79
- },
80
- "/delete": {
81
- "post": {
82
- "tags": ["service"],
83
- "summary": "Supprimer un fichier",
84
- "description": "Supprime un fichier d’un bucket S3",
85
- "parameters": [
86
- {
87
- "name": "bucket",
88
- "summary": "Nom du bucket",
89
- "required": true,
90
- "description": "Nom du bucket S3",
91
- "schema": { "type": "string" }
92
- },
93
- {
94
- "name": "key",
95
- "summary": "Clé de l'objet",
96
- "required": true,
97
- "description": "Clé (chemin) du fichier à supprimer",
98
- "schema": { "type": "string" }
99
- },
100
- {
101
- "name": "config",
102
- "summary": "Configuration AWS",
103
- "required": false,
104
- "description": "Configuration du client AWS SDK (optionnelle)",
105
- "schema": { "type": "object" }
84
+ }
85
+ },
86
+ "x-events": []
87
+ }
88
+ },
89
+ "/download": {
90
+ "post": {
91
+ "tags": [
92
+ "service"
93
+ ],
94
+ "summary": "Télécharger un fichier",
95
+ "description": "Télécharge un fichier depuis un bucket S3",
96
+ "parameters": [
97
+ {
98
+ "name": "bucket",
99
+ "summary": "Nom du bucket",
100
+ "required": true,
101
+ "description": "Nom du bucket S3",
102
+ "schema": {
103
+ "type": "string"
106
104
  }
107
- ],
108
- "x-events": []
105
+ },
106
+ {
107
+ "name": "key",
108
+ "summary": "Clé de l'objet",
109
+ "required": true,
110
+ "description": "Clé (chemin) du fichier à télécharger",
111
+ "schema": {
112
+ "type": "string"
113
+ }
114
+ },
115
+ {
116
+ "name": "config",
117
+ "summary": "Configuration AWS",
118
+ "required": false,
119
+ "description": "Configuration du client AWS SDK (optionnelle)",
120
+ "schema": {
121
+ "type": "object"
122
+ }
123
+ }
124
+ ],
125
+ "responses": {
126
+ "200": {
127
+ "description": "Fichier téléchargé en data URL base64",
128
+ "content": {
129
+ "application/json": {
130
+ "schema": {
131
+ "type": "string",
132
+ "description": "Contenu du fichier en data URL base64 avec type MIME"
133
+ }
134
+ }
135
+ }
136
+ }
137
+ },
138
+ "x-events": []
139
+ }
140
+ },
141
+ "/delete": {
142
+ "post": {
143
+ "tags": [
144
+ "service"
145
+ ],
146
+ "summary": "Supprimer un fichier",
147
+ "description": "Supprime un fichier d’un bucket S3",
148
+ "parameters": [
149
+ {
150
+ "name": "bucket",
151
+ "summary": "Nom du bucket",
152
+ "required": true,
153
+ "description": "Nom du bucket S3",
154
+ "schema": {
155
+ "type": "string"
156
+ }
157
+ },
158
+ {
159
+ "name": "key",
160
+ "summary": "Clé de l'objet",
161
+ "required": true,
162
+ "description": "Clé (chemin) du fichier à supprimer",
163
+ "schema": {
164
+ "type": "string"
165
+ }
166
+ },
167
+ {
168
+ "name": "config",
169
+ "summary": "Configuration AWS",
170
+ "required": false,
171
+ "description": "Configuration du client AWS SDK (optionnelle)",
172
+ "schema": {
173
+ "type": "object"
174
+ }
175
+ }
176
+ ],
177
+ "responses": {
178
+ "200": {
179
+ "description": "Réponse AWS S3 DeleteObjectCommand",
180
+ "content": {
181
+ "application/json": {
182
+ "schema": {
183
+ "type": "object",
184
+ "properties": {
185
+ "DeleteMarker": {
186
+ "type": "boolean",
187
+ "description": "Si un marqueur de suppression a été créé"
188
+ },
189
+ "VersionId": {
190
+ "type": "string",
191
+ "description": "ID de version du marqueur de suppression"
192
+ }
193
+ }
194
+ "DeleteMarker": false,
195
+ "VersionId": "abc123def456"
196
+ }
197
+ }
198
+ }
199
+ }
109
200
  }
110
201
  },
111
- "/list": {
112
- "post": {
113
- "tags": ["service"],
114
- "summary": "Lister les fichiers",
115
- "description": "Liste les fichiers d’un bucket S3, avec un préfixe éventuel",
116
- "parameters": [
117
- {
118
- "name": "bucket",
119
- "summary": "Nom du bucket",
120
- "required": true,
121
- "description": "Nom du bucket S3",
122
- "schema": { "type": "string" }
123
- },
124
- {
125
- "name": "prefix",
126
- "summary": "Préfixe",
127
- "required": false,
128
- "description": "Préfixe (dossier) pour filtrer les objets",
129
- "schema": { "type": "string" }
130
- },
131
- {
132
- "name": "config",
133
- "summary": "Configuration AWS",
134
- "required": false,
135
- "description": "Configuration du client AWS SDK (optionnelle)",
136
- "schema": { "type": "object" }
202
+ "x-events": []
203
+ }
204
+ },
205
+ "/list": {
206
+ "post": {
207
+ "tags": [
208
+ "service"
209
+ ],
210
+ "summary": "Lister les fichiers",
211
+ "description": "Liste les fichiers d’un bucket S3, avec un préfixe éventuel",
212
+ "parameters": [
213
+ {
214
+ "name": "bucket",
215
+ "summary": "Nom du bucket",
216
+ "required": true,
217
+ "description": "Nom du bucket S3",
218
+ "schema": {
219
+ "type": "string"
220
+ }
221
+ },
222
+ {
223
+ "name": "prefix",
224
+ "summary": "Préfixe",
225
+ "required": false,
226
+ "description": "Préfixe (dossier) pour filtrer les objets",
227
+ "schema": {
228
+ "type": "string"
229
+ }
230
+ },
231
+ {
232
+ "name": "config",
233
+ "summary": "Configuration AWS",
234
+ "required": false,
235
+ "description": "Configuration du client AWS SDK (optionnelle)",
236
+ "schema": {
237
+ "type": "object"
238
+ }
239
+ }
240
+ ],
241
+ "responses": {
242
+ "200": {
243
+ "description": "Réponse AWS S3 ListObjectsV2Command",
244
+ "content": {
245
+ "application/json": {
246
+ "schema": {
247
+ "type": "object",
248
+ "properties": {
249
+ "IsTruncated": {
250
+ "type": "boolean",
251
+ "description": "Si la réponse est tronquée"
252
+ },
253
+ "Contents": {
254
+ "type": "array",
255
+ "description": "Liste des objets dans le bucket",
256
+ "items": {
257
+ "type": "object",
258
+ "properties": {
259
+ "Key": {
260
+ "type": "string",
261
+ "description": "Clé de l'objet (chemin)"
262
+ },
263
+ "LastModified": {
264
+ "type": "string",
265
+ "format": "date-time",
266
+ "description": "Date de dernière modification"
267
+ },
268
+ "ETag": {
269
+ "type": "string",
270
+ "description": "Étiquette d'entité"
271
+ },
272
+ "Size": {
273
+ "type": "number",
274
+ "description": "Taille de l'objet en octets"
275
+ },
276
+ "StorageClass": {
277
+ "type": "string",
278
+ "description": "Classe de stockage"
279
+ }
280
+ }
281
+ }
282
+ },
283
+ "KeyCount": {
284
+ "type": "number",
285
+ "description": "Nombre de clés retournées"
286
+ }
287
+ }
288
+ "IsTruncated": false,
289
+ "Contents": [
290
+ {
291
+ "Key": "dossier/image.jpg",
292
+ "LastModified": "2023-01-15T10:30:00Z",
293
+ "ETag": "\"abc123def456\"",
294
+ "Size": 2048,
295
+ "StorageClass": "STANDARD"
296
+ }
297
+ ],
298
+ "KeyCount": 1
299
+ }
137
300
  }
138
- ],
139
- "x-events": []
301
+ }
140
302
  }
141
303
  }
142
304
  },
143
- "components": {
144
- "schemas": {}
145
- }
305
+ "x-events": []
306
+ }
307
+ }
308
+ },
309
+ "components": {
310
+ "schemas": {}
146
311
  }
312
+ }
package/schema.json CHANGED
@@ -10,7 +10,9 @@
10
10
  "paths": {
11
11
  "/upload": {
12
12
  "post": {
13
- "tags": ["service"],
13
+ "tags": [
14
+ "service"
15
+ ],
14
16
  "summary": "Upload File",
15
17
  "description": "Upload a file to an S3 bucket",
16
18
  "parameters": [
@@ -19,135 +21,350 @@
19
21
  "summary": "Bucket Name",
20
22
  "required": true,
21
23
  "description": "The name of the target S3 bucket",
22
- "schema": { "type": "string" }
24
+ "schema": {
25
+ "type": "string"
26
+ }
23
27
  },
24
28
  {
25
29
  "name": "key",
26
30
  "summary": "Object Key",
27
31
  "required": true,
28
32
  "description": "The key (path) where the file will be stored",
29
- "schema": { "type": "string" }
33
+ "schema": {
34
+ "type": "string"
35
+ }
30
36
  },
31
37
  {
32
38
  "name": "content",
33
39
  "summary": "Base64 Content",
34
40
  "required": true,
35
41
  "description": "Base64-encoded content of the file (with data URI prefix)",
36
- "schema": { "type": "string" }
42
+ "schema": {
43
+ "type": "string"
44
+ }
37
45
  },
38
46
  {
39
47
  "name": "config",
40
48
  "summary": "AWS Config",
41
49
  "required": false,
42
50
  "description": "AWS SDK client configuration (optional)",
43
- "schema": { "type": "object" }
51
+ "schema": {
52
+ "type": "object"
53
+ }
44
54
  }
45
55
  ],
46
- "x-events": []
47
- }
48
- },
49
- "/download": {
50
- "post": {
51
- "tags": ["service"],
52
- "summary": "Download File",
53
- "description": "Download a file from an S3 bucket",
54
- "parameters": [
55
- {
56
- "name": "bucket",
57
- "summary": "Bucket Name",
58
- "required": true,
59
- "description": "The name of the S3 bucket",
60
- "schema": { "type": "string" }
61
- },
62
- {
63
- "name": "key",
64
- "summary": "Object Key",
65
- "required": true,
66
- "description": "The key (path) of the file to download",
67
- "schema": { "type": "string" }
68
- },
69
- {
70
- "name": "range",
71
- "summary": "Content range",
72
- "required": false,
73
- "description": "The content range of the file to download",
74
- "schema": { "type": "string" }
75
- },
76
- {
77
- "name": "config",
78
- "summary": "AWS Config",
79
- "required": false,
80
- "description": "AWS SDK client configuration (optional)",
81
- "schema": { "type": "object" }
56
+ "responses": {
57
+ "200": {
58
+ "description": "AWS S3 PutObjectCommand response",
59
+ "content": {
60
+ "application/json": {
61
+ "schema": {
62
+ "type": "object",
63
+ "properties": {
64
+ "ETag": {
65
+ "type": "string",
66
+ "description": "Entity tag for the uploaded object"
67
+ },
68
+ "ServerSideEncryption": {
69
+ "type": "string",
70
+ "description": "Server-side encryption used"
71
+ },
72
+ "VersionId": {
73
+ "type": "string",
74
+ "description": "Version ID of the object (if versioning is enabled)"
75
+ },
76
+ "SSECustomerAlgorithm": {
77
+ "type": "string",
78
+ "description": "Customer-provided encryption algorithm"
79
+ },
80
+ "SSECustomerKeyMD5": {
81
+ "type": "string",
82
+ "description": "MD5 digest of the customer-provided encryption key"
83
+ },
84
+ "SSEKMSKeyId": {
85
+ "type": "string",
86
+ "description": "AWS KMS key ID used for encryption"
87
+ },
88
+ "BucketKeyEnabled": {
89
+ "type": "boolean",
90
+ "description": "Whether bucket key is enabled"
91
+ },
92
+ "RequestCharged": {
93
+ "type": "string",
94
+ "description": "Request charged indicator"
95
+ }
96
+ }
97
+ "ETag": "\"1234567890abcdef1234567890abcdef\"",
98
+ "ServerSideEncryption": "AES256",
99
+ "VersionId": "abc123def456"
100
+ }
101
+ }
102
+ }
82
103
  }
83
- ],
84
- "x-events": []
85
- }
86
- },
87
- "/delete": {
88
- "post": {
89
- "tags": ["service"],
90
- "summary": "Delete File",
91
- "description": "Delete a file from an S3 bucket",
92
- "parameters": [
93
- {
94
- "name": "bucket",
95
- "summary": "Bucket Name",
96
- "required": true,
97
- "description": "The name of the S3 bucket",
98
- "schema": { "type": "string" }
99
- },
100
- {
101
- "name": "key",
102
- "summary": "Object Key",
103
- "required": true,
104
- "description": "The key (path) of the file to delete",
105
- "schema": { "type": "string" }
106
- },
107
- {
108
- "name": "config",
109
- "summary": "AWS Config",
110
- "required": false,
111
- "description": "AWS SDK client configuration (optional)",
112
- "schema": { "type": "object" }
104
+ }
105
+ },
106
+ "x-events": []
107
+ }
108
+ },
109
+ "/download": {
110
+ "post": {
111
+ "tags": [
112
+ "service"
113
+ ],
114
+ "summary": "Download File",
115
+ "description": "Download a file from an S3 bucket",
116
+ "parameters": [
117
+ {
118
+ "name": "bucket",
119
+ "summary": "Bucket Name",
120
+ "required": true,
121
+ "description": "The name of the S3 bucket",
122
+ "schema": {
123
+ "type": "string"
113
124
  }
114
- ],
115
- "x-events": []
125
+ },
126
+ {
127
+ "name": "key",
128
+ "summary": "Object Key",
129
+ "required": true,
130
+ "description": "The key (path) of the file to download",
131
+ "schema": {
132
+ "type": "string"
133
+ }
134
+ },
135
+ {
136
+ "name": "range",
137
+ "summary": "Content range",
138
+ "required": false,
139
+ "description": "The content range of the file to download",
140
+ "schema": {
141
+ "type": "string"
142
+ }
143
+ },
144
+ {
145
+ "name": "config",
146
+ "summary": "AWS Config",
147
+ "required": false,
148
+ "description": "AWS SDK client configuration (optional)",
149
+ "schema": {
150
+ "type": "object"
151
+ }
152
+ }
153
+ ],
154
+ "responses": {
155
+ "200": {
156
+ "description": "Downloaded file as base64-encoded data URL",
157
+ "content": {
158
+ "application/json": {
159
+ "schema": {
160
+ "type": "string",
161
+ "description": "File content as base64-encoded data URL with MIME type"
162
+ }
163
+ }
164
+ }
165
+ }
166
+ },
167
+ "x-events": []
168
+ }
169
+ },
170
+ "/delete": {
171
+ "post": {
172
+ "tags": [
173
+ "service"
174
+ ],
175
+ "summary": "Delete File",
176
+ "description": "Delete a file from an S3 bucket",
177
+ "parameters": [
178
+ {
179
+ "name": "bucket",
180
+ "summary": "Bucket Name",
181
+ "required": true,
182
+ "description": "The name of the S3 bucket",
183
+ "schema": {
184
+ "type": "string"
185
+ }
186
+ },
187
+ {
188
+ "name": "key",
189
+ "summary": "Object Key",
190
+ "required": true,
191
+ "description": "The key (path) of the file to delete",
192
+ "schema": {
193
+ "type": "string"
194
+ }
195
+ },
196
+ {
197
+ "name": "config",
198
+ "summary": "AWS Config",
199
+ "required": false,
200
+ "description": "AWS SDK client configuration (optional)",
201
+ "schema": {
202
+ "type": "object"
203
+ }
204
+ }
205
+ ],
206
+ "responses": {
207
+ "200": {
208
+ "description": "AWS S3 DeleteObjectCommand response",
209
+ "content": {
210
+ "application/json": {
211
+ "schema": {
212
+ "type": "object",
213
+ "properties": {
214
+ "DeleteMarker": {
215
+ "type": "boolean",
216
+ "description": "Whether a delete marker was created"
217
+ },
218
+ "VersionId": {
219
+ "type": "string",
220
+ "description": "Version ID of the delete marker"
221
+ },
222
+ "RequestCharged": {
223
+ "type": "string",
224
+ "description": "Request charged indicator"
225
+ }
226
+ }
227
+ "DeleteMarker": false,
228
+ "VersionId": "abc123def456"
229
+ }
230
+ }
231
+ }
232
+ }
116
233
  }
117
234
  },
118
- "/list": {
119
- "post": {
120
- "tags": ["service"],
121
- "summary": "List Files",
122
- "description": "List files in an S3 bucket, optionally by prefix",
123
- "parameters": [
124
- {
125
- "name": "bucket",
126
- "summary": "Bucket Name",
127
- "required": true,
128
- "description": "The name of the S3 bucket",
129
- "schema": { "type": "string" }
130
- },
131
- {
132
- "name": "prefix",
133
- "summary": "Prefix",
134
- "required": false,
135
- "description": "The prefix (folder) to filter objects",
136
- "schema": { "type": "string" }
137
- },
138
- {
139
- "name": "config",
140
- "summary": "AWS Config",
141
- "required": false,
142
- "description": "AWS SDK client configuration (optional)",
143
- "schema": { "type": "object" }
235
+ "x-events": []
236
+ }
237
+ },
238
+ "/list": {
239
+ "post": {
240
+ "tags": [
241
+ "service"
242
+ ],
243
+ "summary": "List Files",
244
+ "description": "List files in an S3 bucket, optionally by prefix",
245
+ "parameters": [
246
+ {
247
+ "name": "bucket",
248
+ "summary": "Bucket Name",
249
+ "required": true,
250
+ "description": "The name of the S3 bucket",
251
+ "schema": {
252
+ "type": "string"
253
+ }
254
+ },
255
+ {
256
+ "name": "prefix",
257
+ "summary": "Prefix",
258
+ "required": false,
259
+ "description": "The prefix (folder) to filter objects",
260
+ "schema": {
261
+ "type": "string"
262
+ }
263
+ },
264
+ {
265
+ "name": "config",
266
+ "summary": "AWS Config",
267
+ "required": false,
268
+ "description": "AWS SDK client configuration (optional)",
269
+ "schema": {
270
+ "type": "object"
271
+ }
272
+ }
273
+ ],
274
+ "responses": {
275
+ "200": {
276
+ "description": "AWS S3 ListObjectsV2Command response",
277
+ "content": {
278
+ "application/json": {
279
+ "schema": {
280
+ "type": "object",
281
+ "properties": {
282
+ "IsTruncated": {
283
+ "type": "boolean",
284
+ "description": "Whether the response is truncated"
285
+ },
286
+ "Contents": {
287
+ "type": "array",
288
+ "description": "List of objects in the bucket",
289
+ "items": {
290
+ "type": "object",
291
+ "properties": {
292
+ "Key": {
293
+ "type": "string",
294
+ "description": "Object key (path)"
295
+ },
296
+ "LastModified": {
297
+ "type": "string",
298
+ "format": "date-time",
299
+ "description": "Last modification date"
300
+ },
301
+ "ETag": {
302
+ "type": "string",
303
+ "description": "Entity tag"
304
+ },
305
+ "Size": {
306
+ "type": "number",
307
+ "description": "Object size in bytes"
308
+ },
309
+ "StorageClass": {
310
+ "type": "string",
311
+ "description": "Storage class"
312
+ },
313
+ "Owner": {
314
+ "type": "object",
315
+ "description": "Object owner information"
316
+ }
317
+ }
318
+ }
319
+ },
320
+ "Name": {
321
+ "type": "string",
322
+ "description": "Bucket name"
323
+ },
324
+ "Prefix": {
325
+ "type": "string",
326
+ "description": "Prefix used for filtering"
327
+ },
328
+ "MaxKeys": {
329
+ "type": "number",
330
+ "description": "Maximum number of keys returned"
331
+ },
332
+ "KeyCount": {
333
+ "type": "number",
334
+ "description": "Number of keys returned"
335
+ },
336
+ "ContinuationToken": {
337
+ "type": "string",
338
+ "description": "Token for pagination"
339
+ },
340
+ "NextContinuationToken": {
341
+ "type": "string",
342
+ "description": "Next continuation token for pagination"
343
+ }
344
+ }
345
+ "IsTruncated": false,
346
+ "Contents": [
347
+ {
348
+ "Key": "folder/image.jpg",
349
+ "LastModified": "2023-01-15T10:30:00Z",
350
+ "ETag": "\"abc123def456\"",
351
+ "Size": 2048,
352
+ "StorageClass": "STANDARD"
353
+ }
354
+ ],
355
+ "KeyCount": 1,
356
+ "MaxKeys": 1000
357
+ }
144
358
  }
145
- ],
146
- "x-events": []
359
+ }
147
360
  }
148
361
  }
149
362
  },
150
- "components": {
151
- "schemas": {}
152
- }
363
+ "x-events": []
364
+ }
365
+ }
366
+ },
367
+ "components": {
368
+ "schemas": {}
153
369
  }
370
+ }