-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi-schema.yaml
4023 lines (3952 loc) · 109 KB
/
openapi-schema.yaml
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Papermerge REST API
version: 2.1.9
description: Document management system designed for digital archives
paths:
/api/auth/login/:
post:
operationId: auth_login_create
description: |-
Authenticates user with given username and password.
Response will contain token to be used as part of ``Authorization`` header
in subsequent requests whenever authorization is required.
tags:
- auth
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AuthTokenRequest'
required: true
security:
- Token Authentication: []
- {}
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AuthTokenResponse'
description: ''
/api/auth/logout/:
post:
operationId: auth_logout_create
description: |-
Logs the user out of current session.
On a successful request, the token used to authenticate is deleted from the
system and can no longer be used for authentication.
Request body must be empty.
parameters:
- in: query
name: format
schema:
type: string
enum:
- json
- vnd.api+json
tags:
- auth
security:
- Token Authentication: []
responses:
'200':
description: No response body
/api/auth/logoutall/:
post:
operationId: auth_logoutall_create
description: |-
Logs the user out of all sessions i.e. deletes all auth tokens for the user.
On a successful request, the token used to authenticate, and all other
tokens registered to the same user account, are deleted from the system
and can no longer be used for authentication.
Request body must be empty.
parameters:
- in: query
name: format
schema:
type: string
enum:
- json
- vnd.api+json
tags:
- auth
security:
- Token Authentication: []
responses:
'200':
description: No response body
/api/document-versions/{id}/:
get:
operationId: document_versions_retrieve
parameters:
- in: query
name: format
schema:
type: string
enum:
- json
- vnd.api+json
- in: path
name: id
schema:
type: string
format: uuid
required: true
tags:
- document-versions
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DocumentVersion'
application/json:
schema:
$ref: '#/components/schemas/DocumentVersion'
description: ''
/api/document-versions/{id}/download/:
get:
operationId: document_versions_download_retrieve
parameters:
- in: path
name: id
schema:
type: string
format: uuid
required: true
tags:
- document-versions
security:
- Token Authentication: []
responses:
'200':
description: No response body
/api/documents/:
get:
operationId: documents_list
description: Document details endpoint.
parameters:
- name: filter[search]
required: false
in: query
description: A search term.
schema:
type: string
- name: page[number]
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
- name: page[size]
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: sort
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
tags:
- documents
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PaginatedDocumentDetailsList'
description: ''
/api/documents/{document_id}/upload/{file_name}:
put:
operationId: Upload file
description: |-
Uploads a file for given document node. If last version of the
document does not have any file associated yet, this REST API call
will associated given file with document’s last version. If, on
the other hand, last version of the document already has a file
associated with it - a new document version will be created and
associated it with respective file.
Request body should contain file data. Please note that you need to
specify ``Content-Disposition`` header with value
'attachment; filename={file_name}'.
parameters:
- in: header
name: Content-Disposition
schema:
type: string
required: true
examples:
ContentDispositionHeaderForFileNamedmydoc1.pdf:
value: attachment; filename=mydoc_1.pdf
summary: Content disposition header for file namedmydoc_1.pdf
ContentDispositionHeaderForFilenamedAbc.pdf:
value: attachment; filename=abc.pdf
summary: Content disposition header for filenamed abc.pdf
- in: path
name: document_id
schema:
type: string
pattern: ^[0-9a-f-]+$
required: true
- in: path
name: file_name
schema:
type: string
pattern: ^[^/]+$
required: true
tags:
- documents
requestBody:
content:
application/octet-stream:
schema:
type: string
format: binary
security:
- Token Authentication: []
responses:
'201':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Data_DocumentDetails'
description: ''
/api/documents/{id}/:
get:
operationId: documents_retrieve
description: Document details endpoint.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Document.
required: true
tags:
- documents
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DocumentDetails'
description: ''
patch:
operationId: documents_partial_update
description: Document details endpoint.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Document.
required: true
tags:
- documents
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PatchedDocumentDetails'
application/json:
schema:
$ref: '#/components/schemas/PatchedDocumentDetails'
multipart/form-data:
schema:
$ref: '#/components/schemas/PatchedDocumentDetails'
required: true
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DocumentDetails'
description: ''
delete:
operationId: documents_destroy
description: Document details endpoint.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Document.
required: true
tags:
- documents
security:
- Token Authentication: []
responses:
'204':
description: No response body
/api/documents/{id}/ocr-text:
get:
operationId: Document OCR Text
description: |-
Retrieve OCRed text of the document
You can filter pages for which OCRed text is to be received either by
page numbers or by page ids. When both filters are empty - retrieve
OCRed text of the whole document (i.e. of its last document version)
parameters:
- in: path
name: id
schema:
type: string
format: uuid
required: true
- in: query
name: page_ids[]
schema:
type: array
items:
type: string
description: Filter pages by provided page ids
- in: query
name: page_numbers[]
schema:
type: array
items:
type: number
description: Filter pages by provided page numbers
tags:
- documents
security:
- Token Authentication: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentVersionOcrText'
description: ''
/api/documents/merge/:
post:
operationId: Documents Merge
description: |-
Merge source document into destination
A new document version is created on the target (destination document)
from all pages of the last version of the source.
**Source document is deleted**.
Merge operation is useful when you have same document scanned several
times. Instead of keeping two similar scanned copies of the same
document, better to merge them as two versions of the same document.
For example, say you have two scans of the same document A_lq.pdf and
A_hq.pdf where A_lq.pdf low quality scan and A_hq.pdf is high quality
scan. You want to merge A_lq.pdf and A_hq.pdf document into one so
that higher quality scan will be lastest version.
In this case you need to set A_hq.pdf as source and A_lq.pdf as
destination.
Notice that OCR data (if any) is reused, this means that after
merge operation you don't have to re-run OCR as the OCR data of the
source document is reuse/copied to the target.
tags:
- documents
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsMerge'
required: true
security:
- Token Authentication: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsMerge'
description: ''
/api/folders/:
get:
operationId: folders_list
description: Folders endpoint
parameters:
- name: filter[search]
required: false
in: query
description: A search term.
schema:
type: string
- name: page[number]
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
- name: page[size]
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: sort
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
tags:
- folders
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PaginatedFolderList'
description: ''
post:
operationId: folders_create
description: Folders endpoint
tags:
- folders
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Folder'
application/json:
schema:
$ref: '#/components/schemas/Folder'
multipart/form-data:
schema:
$ref: '#/components/schemas/Folder'
required: true
security:
- Token Authentication: []
responses:
'201':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Folder'
description: ''
/api/folders/{id}/:
get:
operationId: folders_retrieve
description: Folders endpoint
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Folder.
required: true
tags:
- folders
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Folder'
description: ''
patch:
operationId: folders_partial_update
description: Folders endpoint
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Folder.
required: true
tags:
- folders
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PatchedFolder'
application/json:
schema:
$ref: '#/components/schemas/PatchedFolder'
multipart/form-data:
schema:
$ref: '#/components/schemas/PatchedFolder'
required: true
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Folder'
description: ''
delete:
operationId: folders_destroy
description: Folders endpoint
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Folder.
required: true
tags:
- folders
security:
- Token Authentication: []
responses:
'204':
description: No response body
/api/groups/:
get:
operationId: groups_list
description: Group endpoint
parameters:
- name: filter[search]
required: false
in: query
description: A search term.
schema:
type: string
- name: page[number]
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
- name: page[size]
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: sort
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
tags:
- groups
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PaginatedGroupList'
description: ''
post:
operationId: groups_create
description: Group endpoint
tags:
- groups
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Group'
application/json:
schema:
$ref: '#/components/schemas/Group'
multipart/form-data:
schema:
$ref: '#/components/schemas/Group'
required: true
security:
- Token Authentication: []
responses:
'201':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Group'
description: ''
/api/groups/{id}/:
get:
operationId: groups_retrieve
description: Group endpoint
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this group.
required: true
tags:
- groups
security:
- Token Authentication: []
responses:
'201':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Data_Group'
description: ''
patch:
operationId: groups_partial_update
description: Group endpoint
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this group.
required: true
tags:
- groups
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PatchedGroup'
application/json:
schema:
$ref: '#/components/schemas/PatchedGroup'
multipart/form-data:
schema:
$ref: '#/components/schemas/PatchedGroup'
required: true
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Group'
description: ''
delete:
operationId: groups_destroy
description: Group endpoint
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this group.
required: true
tags:
- groups
security:
- Token Authentication: []
responses:
'204':
description: No response body
/api/nodes/:
get:
operationId: nodes_list
description: |-
Documents can be organized in folders. One folder can contain documents as
well as other folders. A node is a convinient abstraction of two concepts -
'folder' and 'document'. Each node has a type field with value either
'folders' or 'documents' depending on what kind of node it is.
parameters:
- name: filter[search]
required: false
in: query
description: A search term.
schema:
type: string
- name: page[number]
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
- name: page[size]
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: sort
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
tags:
- nodes
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PaginatedNodeList'
description: ''
post:
operationId: nodes_create
description: |-
Creates a node.
A node can be either a Folder or a Document. In order to create
a folder set required `type` attribute to `folders`. In order
to create a document set `type` attribute to `documents`.
Created document won't have any file associated i.e. this REST API
creates just document model in database.
tags:
- nodes
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Data_Node'
required: true
security:
- Token Authentication: []
responses:
'201':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Data_Node'
description: ''
'400':
content:
application/vnd.api+json:
schema:
type: object
properties:
errors:
type: array
items:
type: object
properties:
detail:
type: string
status:
type: string
code:
type: string
source:
type: object
properties:
pointer:
type: string
description: ''
/api/nodes/{id}/:
get:
operationId: node_retrieve
description: |-
Documents can be organized in folders. One folder can contain documents as
well as other folders. A node is a convinient abstraction of two concepts -
'folder' and 'document'. Each node has a type field with value either
'folders' or 'documents' depending on what kind of node it is.
parameters:
- name: filter[search]
required: false
in: query
description: A search term.
schema:
type: string
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Documents.
required: true
- name: page[number]
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
- name: page[size]
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: sort
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
tags:
- nodes
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PaginatedNodeList'
description: ''
patch:
operationId: nodes_partial_update
description: |-
Documents can be organized in folders. One folder can contain documents as
well as other folders. A node is a convinient abstraction of two concepts -
'folder' and 'document'. Each node has a type field with value either
'folders' or 'documents' depending on what kind of node it is.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Documents.
required: true
tags:
- nodes
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/PatchedNode'
required: true
security:
- Token Authentication: []
responses:
'200':
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Node'
description: ''
delete:
operationId: nodes_destroy
description: |-
Documents can be organized in folders. One folder can contain documents as
well as other folders. A node is a convinient abstraction of two concepts -
'folder' and 'document'. Each node has a type field with value either
'folders' or 'documents' depending on what kind of node it is.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
description: A UUID string identifying this Documents.
required: true
tags:
- nodes
security:
- Token Authentication: []
responses:
'204':
description: No response body
/api/nodes/{id}/tags/:
post:
operationId: node_assign_tags
description: |-
Assigns given list of tag names to the node.
All tags not present in given list of tags names
will be disassociated from the node; in other words upon
successful completion of the request node will have ONLY
tags from the list.
Yet another way of thinking about http POST is as it **replaces
existing node tags** with the one from input list.
Example:
Node N1 has 'invoice', 'important', 'unpaid' tags.
After following request:
POST /api/nodes/{N1}/tags/
{tags: ['invoice', 'important', 'paid']}
Node N1 will have 'invoice', 'important', 'paid' tags.
Notice that previously associated 'unpaid' tag is not
assigned to N1 anymore (because it was not in the provided list
of tags).
If you want to retain node tags not present in input tag list names
then use PATCH/PUT http method of this endpoint.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
required: true
tags:
- nodes
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/NodeTags'
required: true
security:
- Token Authentication: []
responses:
'201':
content:
application/json:
schema:
$ref: '#/components/schemas/NodeTags'
description: ''
patch:
operationId: node_append_tags
description: |-
Appends given list of tag names to the node.
Retains all previously associated node tags.
Yet another way of thinking about http PATCH method is as it
**appends** input tags to the currently associated tags.
Example:
Node N1 has 'invoice', 'important' tags.
After following request:
POST /api/nodes/{N1}/tags/
{tags: ['paid']}
Node N1 will have 'invoice', 'important', 'paid' tags.
Notice that previously associated 'invoice' and 'important' tags
are still assigned to N1.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
required: true
tags:
- nodes
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PatchedNodeTags'
security:
- Token Authentication: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/NodeTags'
description: ''
delete:
operationId: node_dissociate_tags
description: |-
Dissociate given tags the node.
Tags models are not deleted - just dissociated from the node.
parameters:
- in: path
name: id
schema:
type: string
format: uuid
required: true
tags:
- nodes
security:
- Token Authentication: []
responses:
'204':
description: No response body
/api/nodes/download/:
get:
operationId: nodes_download
description: GET /nodes/download/
parameters:
- in: query
name: archive_type
schema:
enum:
- targz
- zip
type: string
default: zip
minLength: 1
- in: query
name: file_name
schema:
type: string
maxLength: 32
minLength: 1
- in: query
name: format