Welcome to mirror list, hosted at ThFree Co, Russian Federation.

swagger.yaml - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e78d1cbdfa5cd595aa7059d330cbfc242525395 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# this is an example of the Uber API
# as a demonstration of an API spec in YAML
swagger: '2.0'
info:
  title: Passman API
  description: Passman, a simple password manager for owncloud
  version: "1.0.0 draft"
  license:
    name: AGPL
    url: https://github.com/nextcloud/passman/blob/master/LICENSE
# the domain of the service
host: example.com
# array of all schemes that your API supports
schemes:
  - https
# will be prefixed to all paths
basePath: /api/v2

produces:
  - application/json
paths:
  /vaults:
    get:
      summary: Get vaults
      description: |
        The vaults endpoint returns information about the vaults a user has.   
        A vault contains credentials
      tags:
        - Vault
      responses:
        200:
          description: An array of vaults
          schema:
            type: array
            items:
              $ref: '#/definitions/Vault'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'
    post:
      summary: Create a vault
      tags:
        - Vault        
      parameters:
        - name: body
          in: body
          required: true
          schema:
            type: object
            properties:
              vault_name:
                type: string
      responses:
        200:
          description: The created vault
          schema:
              $ref: '#/definitions/Vault'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'    
            
  /vaults/{vault_id}:
    get:
      summary: Get a vault
      description: |
        Returns a vault, in a vault are the encrypted credentials
      tags:
        - Vault
      
      parameters:
        - name: vault_id 
          in: path
          required: true
          type: integer
          
      responses:
        200:
          description: An array of vaults
          schema:
            type: array
            items:
              $ref: '#/definitions/Credential'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'
    patch:
      summary: Update a vault
      tags:
        - Vault      
      parameters:
        - name: vault_id
          in: path
          required: true
          type: integer
          
        - name: body
          in: body
          required: true
          schema:
            type: object
            properties:
              vault_name:
                type: string
      responses:
        200:
          description: The updated vault
          schema:
              $ref: '#/definitions/Vault'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'      
  
    delete:
      summary: Delete a vault permanently
      tags:
        - Item      
      parameters:
        - name: vault_id
          in: path
          required: true
          type: integer
      responses:
        200:
          description: OK

        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'    
  
  /credentials:
    post:
      summary: Create a credential
      description: |
        Posting to this endpoint will create an item. No need to set item_id when creating an item.
      tags:
        - Credential        
      parameters:
        - name: body
          in: body
          required: true
          schema:
            $ref: '#/definitions/Credential'
      responses:
        200:
          description: The created item
          schema:
              $ref: '#/definitions/Credential'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error' 
  
  /credentials/{credential_id}:
    get: 
      summary: Get an item
      tags:
        - Credential      
      parameters:
        - name: credential_id
          in: path
          required: true
          type: integer
      responses:
        200:
          description: The requested item
          schema:
              $ref: '#/definitions/Credential'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'       
    patch:
      summary: Update an item
      tags:
        - Credential      
      parameters:
        - name: credential_id
          in: path
          required: true
          type: integer
          
        - name: body
          in: body
          required: true
          schema:
            $ref: '#/definitions/Credential'
      responses:
        200:
          description: The updated item
          schema:
              $ref: '#/definitions/Credential'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'  
    delete:
      summary: Delete an item permanently
      description: For a 'soft' delete set delete_time
      tags:
        - Credential      
      parameters:
        - name: credential_id
          in: path
          required: true
          type: integer
      responses:
        200:
          description: OK

        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'  
 
 
 
  /credentials/{credential_id}/revisions:
    get:
      summary: Get revisions
      tags:
        - Revision      
      parameters:
        - name: credential_id
          in: path
          required: true
          type: integer
      responses:
        200:
          description: The updated vault
          schema:
              $ref: '#/definitions/CredentialRevision'
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'  



  /credentials/{credential_id}/revisions/{revision_id}:
    delete:
      summary: Delete revision
      tags:
        - Revision      
      parameters:
        - name: credential_id
          in: path
          required: true
          type: integer
        - name: revision_id
          in: path
          required: true
          type: integer          
      responses:
        200:
          description: OK

        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'   
  

  /file:
    post:
      summary: Upload and attach a file to an item
      tags:
        - File     
      consumes:
        - multipart/form-data
      parameters:
        - name: file
          in: formData
          description: The uploaded file data
          required: true
          type: file        
      responses:
        200:
          description: The result
          schema:
            type: object
            properties:
              result:
                type: boolean
        default:
          description: Unexpected error
          schema:
            $ref: '#/definitions/Error'   
  
  /file/{file_id}:
    delete:
      tags:
        - File      
      summary: Delete a file
      parameters:
        - name: file_id
          in: path
          required: true
          type: integer      
      responses:
        200:
          description: OK
    get:
      tags:
        - File      
      summary: Get file contents
      parameters:
        - name: file_id
          in: path
          required: true
          type: integer      
      responses:
        200:
          description: OK    
            
definitions:
  Vault:
    type: object
    properties:
      vault_id:
        type: integer
        format: int64
        description: The id of the vault, generated by uniqid()
      name:
        type: string
        description: Name of the vault
      created:
        type: string
        format: dateTime
        description: Time the vault was created

  Credential:
    type: object
    properties:
      item_id:
        type: integer
        format: int64
        description: generated by uniqid()
      user_id:
        type: string
      vault:
        type: integer
        description: The id of the vault the item belongs to
      label:
        type: string
        description: Name of the item
      description:
        type: string
        description: Description the user has given to the item
      created:
        type: string
        format: dateTime
        description: Time the item was created
      changed:
        type: string
        format: dateTime
        description: Time the item was changed
      tags:
        type: array
        items:
          $ref: '#/definitions/Tag'
      email:
        type: string
        description: Saved e-mail
      username:
        type: string
        description: Saved username
      password: 
        type: string
        description: The stored password, encrypted with sjcl        
      url:
        type: string
        description: Saved url of the item
      favicon:
        type: string
        description: Fav icon from the url
      renew_interval:
        type: integer
        description: x
      expire_time:
        type: string
        format: dateTime
        description: Timestamp when the password expires, set NULL to not expire items
      delete_time:
        type: string
        format: dateTime
        description: If an item is deleted this contains the timestamp, else it's 0

      files:
        type: array
        description: An array containing encrypted files
        items:
          $ref: '#/definitions/File'
      custom_fields:
        type: array
        description: An array of user defined fields
        items:
          $ref: '#/definitions/CustomField'          
      otp:
        type: object
        description: This field holds the One Time Password data
        properties:
          otp_secret:
            type: string
          qr_uri:
            type: string
  
  
  CredentialRevision:
    type: object
    properties:
      revision_id: 
        type: integer
        format: int64
      created: 
        type: string
        format: dateTime
      credential:
          $ref: '#/definitions/Credential'
          
        
  File:
    type: object
    properties:
      file_id:
        type: integer
        format: int64
        description: The file id, generated by uniqid()
      filename: 
        type: string
        description: The uploaded file name
      guid: 
        type: string
        description: The guid of the file
      size:
        type: integer
        description: Size of the file in bytes
      file_data:
        type: string
        description: sjcl encrypted file (only given when downloading a file)
      created:
        type: string
        format: dateTime
        
        
  CustomField:
    type: object
    properties:
      label:
        type: string
        description: Label of the custom field
      value:
        type: string
        description: Value of the custom field
      
  
  Tag:
    type: object
    properties:
      tag_id: 
        type: integer
      name: 
        type: string

  Error:
    type: object
    properties:
      code:
        type: integer
        format: int32
      message:
        type: string
      fields:
        type: string