forked from zzarbi/synology
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSynology_Drive.json
More file actions
executable file
·8131 lines (8131 loc) · 468 KB
/
Copy pathSynology_Drive.json
File metadata and controls
executable file
·8131 lines (8131 loc) · 468 KB
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
{
"info": {
"description": "Synology Drive APIs empower developers to seamlessly integrate file management, sharing, and collaboration features into compatible systems. Leverage Synology Drive resources to create, manage, and search files within Synology's secure, trusted ecosystem. Whether you're building custom applications or optimizing existing workflows, the REST APIs enable you to create solutions that ensure data security, operational efficiency, and flexible scalability within the private cloud.{X-SYSTEM-REQUIREMENTS}",
"title": "Synology Drive",
"version": "1",
"termsOfService": "https://office-suite-api.synology.com/"
},
"externalDocs": {
"description": "Synology Office Suite WebAPI Document",
"url": "https://office-suite-api.synology.com/"
},
"x-system-requirements": {
"dsmMinVersion": "7.2.2 nano3",
"packageMinVersion": "3.5.2"
},
"servers": [
{
"url": "{protocol}://{nas_url}",
"variables": {
"protocol": {
"default": "https",
"enum": [
"http",
"https"
]
},
"nas_url": {
"default": "{nas_url}",
"description": "NAS URL"
}
}
}
],
"security": [
{
"sid": []
}
],
"paths": {
"/api/SynologyDrive/default/v1/login": {
"post": {
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"required": [
"did",
"sid"
],
"properties": {
"did": {
"type": "string",
"description": "Device ID."
},
"sid": {
"type": "string",
"description": "Session ID required for subsequent API calls."
}
}
},
"error": {
"type": "object",
"required": [
"code"
],
"properties": {
"code": {
"type": "integer"
}
}
}
}
},
"examples": {
"success": {
"value": {
"success": true,
"data": {
"did": "your device id",
"sid": "your session id required for subsequent API calls"
}
}
},
"failed": {
"value": {
"success": false,
"error": {
"code": 400
}
}
}
}
}
}
}
},
"tags": [
"Authorization"
],
"summary": "Sign in",
"description": "Sign in DSM to obtain `sid` which is required for subsequent API calls.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"format",
"account",
"passwd"
],
"properties": {
"format": {
"type": "string",
"enum": [
"sid"
],
"description": "Session id return format. Set it to literal `sid` to ensure compatibility."
},
"account": {
"type": "string",
"example": "admin",
"description": "DSM account"
},
"passwd": {
"type": "string",
"example": "password",
"description": "DSM password"
}
}
}
}
},
"required": true
},
"security": [],
"x-syno-method": "login",
"x-syno-version": 6
},
"x-syno-api": "SYNO.API.Auth"
},
"/api/SynologyDrive/default/v1/logout": {
"post": {
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean"
},
"error": {
"type": "object",
"required": [
"code"
],
"properties": {
"code": {
"type": "integer"
}
}
}
}
},
"examples": {
"success": {
"value": {
"success": true
}
},
"failed": {
"value": {
"success": false,
"error": {
"code": 400
}
}
}
}
}
}
}
},
"tags": [
"Authorization"
],
"summary": "Sign out",
"description": "Sign out the DSM session corresponding to the specified `_sid`.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"_sid"
],
"properties": {
"_sid": {
"type": "string",
"example": "abcd1234",
"description": "`sid` obtained from sign in."
}
}
}
}
},
"required": true
},
"security": [],
"x-syno-method": "logout",
"x-syno-version": 6
},
"x-syno-api": "SYNO.API.Auth"
},
"/api/SynologyDrive/default/v1/files/convert-office": {
"post": {
"x-syno-version": 10,
"x-syno-method": "convert_office",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/Response.Template"
},
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"async_task_id"
],
"properties": {
"async_task_id": {
"type": "string",
"description": "The ID of async task."
}
}
}
}
}
]
},
"examples": {
"Convert a Word file to Synology Document.": {
"value": {
"success": true,
"data": {
"async_task_id": "task-11"
}
}
}
}
}
}
}
},
"tags": [
"Files"
],
"summary": "Convert to Synology Office",
"description": "Convert files to Synology Office. This API is asynchronous, returning an async task ID immediately while the conversion runs in the background. Synology Office must be installed for this API to function properly.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"files"
],
"properties": {
"to_parent_folder": {
"type": "string",
"description": "ID system format:\n 0. \"link:permanent_link\"\n 1. \"id:file_id\"\n 2. \"id:file_id/basename\"\n 3. \"/mydrive/{relative-path}\"\n 4. \"/team-folders/{team-folder-name}/{relative-path}\"\n 5. \"/views/{view_id}/{relative-path}\"\n 6. \"/volumes/{absolute-path}\""
},
"conflict_action": {
"type": "string",
"enum": [
"overwrite",
"autorename",
"stop",
"version"
],
"description": "The fallback action when file name is conflicted in destination folder. Valid values are overwrite, autorename, stop, version."
},
"files": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Files.ConvertOfficeInfo_0"
},
"description": "The collection of file paths selected by the user, including both directories and files."
}
}
},
"examples": {
"Convert a Word file to Synology Document.": {
"value": {
"files": [
{
"path": "id:864340450465593037"
}
],
"to_parent_folder": "/mydrive",
"conflict_action": "autorename"
}
}
}
}
},
"required": true
}
},
"x-syno-api": "SYNO.SynologyDrive.Files"
},
"/api/SynologyDrive/default/v1/files/copy": {
"post": {
"x-syno-version": 10,
"x-syno-method": "copy",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/Response.Template"
},
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"async_task_id"
],
"properties": {
"async_task_id": {
"type": "string",
"description": "The ID of async task."
}
}
}
}
}
]
},
"examples": {
"Copy \"/mydrive/123/2.jpg\" to path \"/mydrive/test\"": {
"value": {
"success": true,
"data": {
"async_task_id": "task-19"
}
}
}
}
}
}
}
},
"tags": [
"Files"
],
"summary": "Copy file or folder",
"description": "Copy a file or a folder include sub tree to another parent folder. This API is asynchronous, which returns a async task ID immediately and runs task in the background.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"files",
"to_parent_folder"
],
"properties": {
"files": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of file paths to be copied."
},
"dry_run": {
"type": "boolean",
"description": "Dry run copy action without actually perform on the file system. If this parameter is set to true, it will report files can be copied safely or return conflicted files in destination folder. (default: false)"
},
"conflict_action": {
"type": "string",
"enum": [
"overwrite",
"autorename",
"stop",
"version"
],
"description": "The fallback action when file name is conflicted in destination folder. Valid values are overwrite, autorename, stop, version. (default: autorename)"
},
"to_parent_folder": {
"type": "string",
"description": "The path of destination parent folder."
}
}
},
"examples": {
"Copy \"/mydrive/123/2.jpg\" to path \"/mydrive/test\"": {
"value": {
"files": [
"/mydrive/123/2.jpg"
],
"to_parent_folder": "/mydrive/test"
}
}
}
}
},
"required": true
}
},
"x-syno-api": "SYNO.SynologyDrive.Files"
},
"/api/SynologyDrive/default/v1/files": {
"post": {
"x-syno-version": 10,
"x-syno-method": "create",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/Response.Template"
},
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"watermark_version",
"transient",
"dsm_path",
"adv_shared",
"enable_watermark",
"force_watermark_download",
"support_remote",
"disable_download",
"app_properties",
"revisions",
"content_snippet",
"hash",
"permanent_link",
"owner",
"shared_with",
"sync_to_device",
"shared",
"starred",
"encrypted",
"removed",
"max_id",
"change_id",
"sync_id",
"version_id",
"capabilities",
"size",
"change_time",
"modified_time",
"access_time",
"created_time",
"parent_id",
"content_type",
"display_path",
"path",
"file_id"
],
"properties": {
"uploaded_size": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": ""
},
"watermark_version": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": ""
},
"transient": {
"type": "boolean",
"description": ""
},
"dsm_path": {
"type": "string",
"description": ""
},
"adv_shared": {
"type": "boolean",
"description": ""
},
"enable_watermark": {
"type": "boolean",
"description": ""
},
"force_watermark_download": {
"type": "boolean",
"description": ""
},
"support_remote": {
"type": "boolean",
"description": ""
},
"disable_download": {
"type": "boolean",
"description": ""
},
"last_modified_by": {
"$ref": "#/components/schemas/Files.MemberInfo_0"
},
"app_properties": {
"$ref": "#/components/schemas/Files.FreeStyleObject_0"
},
"properties": {
"$ref": "#/components/schemas/Files.FreeStyleObject_0"
},
"image_metadata": {
"$ref": "#/components/schemas/Files.ImageMetadata_0"
},
"revisions": {
"type": "integer",
"minimum": 0,
"description": "The number of file's revisions.\n"
},
"content_snippet": {
"type": "string",
"description": "The highlight of content snippet in search result.\n"
},
"hash": {
"type": "string",
"description": "Hash for the content of the file.\n"
},
"labels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Files.MinLabelInfo_0"
},
"description": "Array of LabelInfo attached on this file.\n"
},
"permanent_link": {
"type": "string",
"description": "Permanent link UUID for this file."
},
"owner": {
"$ref": "#/components/schemas/Files.MemberInfo_0"
},
"shared_with": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Files.PermissionInfo_0"
},
"description": "Array of PermissionInfo about shared users. Note that if user has no capability to manage sharing, this attribute will be empty array even shared is true.\n"
},
"sync_to_device": {
"type": "boolean",
"description": "Whether the file is selected to be sync across devices. This attribute is only valid in the response from Files.list_shared_with_me API.\n"
},
"shared": {
"type": "boolean",
"description": "Whether the file is shared with others.\n"
},
"starred": {
"type": "boolean",
"description": "Whether the user has starred the file.\n"
},
"encrypted": {
"type": "boolean",
"description": "Whether the file is encrypted.\n"
},
"removed": {
"type": "boolean",
"description": "Indicate this file is removed or not.\n"
},
"max_id": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "Max sync id under a folder\n"
},
"change_id": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "Change id under a folder\n"
},
"sync_id": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "Sync id.\n"
},
"version_id": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The current version of the file.\n"
},
"capabilities": {
"$ref": "#/components/schemas/Files.CapabilityInfo_0"
},
"size": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The size of the file."
},
"change_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The last time the file state was changed by anyone."
},
"modified_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The last time the file was modified by anyone.\n"
},
"access_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The last time the file was accessed by anyone."
},
"created_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The time of file creation."
},
"parent_id": {
"type": "string",
"description": "The ID of parent folder of the file."
},
"content_type": {
"type": "string",
"enum": [
"dir",
"document",
"image",
"audio",
"video",
"file"
],
"description": "File content types. Valid values are dir, document, image, audio, video, file."
},
"type": {
"type": "string",
"enum": [
"file",
"dir"
],
"description": "File types. Valid values are file, dir."
},
"name": {
"type": "string",
"description": "File name."
},
"display_path": {
"type": "string",
"description": "The usable path where current user can accessed. If user has privilege in original file path (somewhere in my drive or team folders), original path will be returned, otherwise, a path from shared with me will be returned."
},
"path": {
"type": "string",
"description": "The file path in current category navigation.\n"
},
"file_id": {
"type": "string",
"description": "The ID of the file."
}
}
}
}
}
]
},
"examples": {
"Create a folder named \"abc\" at \"/mydrive\".": {
"value": {
"success": true,
"data": {
"name": "abc",
"type": "dir",
"permanent_link": "10XRjCRrEd3loz5AcLsoUl9vzLKSq7tF",
"size": 0,
"file_id": "846602240362853366",
"path": "/abc",
"created_time": 1729067406,
"display_path": "/mydrive/abc",
"modified_time": 1729067406,
"access_time": 1729067406,
"change_time": 1729067406,
"parent_id": "785518539946631169",
"adv_shared": false,
"app_properties": {
"type": "none"
},
"capabilities": {
"can_comment": true,
"can_delete": true,
"can_download": true,
"can_encrypt": true,
"can_organize": true,
"can_preview": true,
"can_read": true,
"can_rename": true,
"can_share": true,
"can_sync": true,
"can_write": true
},
"change_id": 3130,
"content_snippet": "",
"content_type": "dir",
"disable_download": false,
"dsm_path": "",
"enable_watermark": false,
"encrypted": false,
"force_watermark_download": false,
"hash": "",
"image_metadata": {
"time": 1729067406
},
"labels": [],
"max_id": 3130,
"owner": {
"name": "user1",
"uid": 1026,
"nickname": "",
"display_name": "user1"
},
"properties": {},
"removed": false,
"revisions": 1,
"shared": false,
"shared_with": [],
"starred": false,
"support_remote": false,
"sync_id": 3130,
"sync_to_device": false,
"transient": false,
"version_id": "3130",
"watermark_version": 0
}
}
}
}
}
}
}
},
"tags": [
"Files"
],
"summary": "Create file or folder",
"description": "This API allows app to create file directly with base64 encoded contents which only support contents up to 1MB in size. For larger files, use upload API.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [],
"properties": {
"file_content": {
"type": "string",
"description": "Base64 encoded file content. This field supports length up to 1MB in size."
},
"labels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Files.LabelEditAction_0"
},
"description": "Array of label_id to be tagged. Note this parameter is mainly for migration. (default: none)"
},
"modified_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The last time the file was modified. (default: created_time)"
},
"access_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The last time the file was accessed. (default: created_time)"
},
"created_time": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The time of file creation. (default: server current time)"
}
}
},
"examples": {
"Create a folder named \"abc\" at \"/mydrive\".": {
"value": {
"modified_time": 1738734842
}
}
}
}
},
"required": true
},
"parameters": [
{
"name": "mute",
"in": "query",
"schema": {
"type": "boolean",
"description": "If true, this file operation won't record in recently access list and won't send any notification to user. (default: false)"
},
"description": "If true, this file operation won't record in recently access list and won't send any notification to user. (default: false)",
"required": false,
"x-syno-param": "mute"
},
{
"name": "conflict_action",
"in": "query",
"schema": {
"type": "string",
"description": "The fallback action when file name is conflicted in destination folder. Valid values are \"overwrite\", \"autorename\", stop. (default: stop)"
},
"description": "The fallback action when file name is conflicted in destination folder. Valid values are \"overwrite\", \"autorename\", stop. (default: stop)",
"required": false,
"examples": {
"Create a folder named \"abc\" at \"/mydrive\".": {
"description": "Create a folder named \"abc\" at \"/mydrive\".",
"value": "autorename"
}
},
"x-syno-param": "conflict_action"
},
{
"name": "permanent_link",
"in": "query",
"schema": {
"type": "string",
"description": "Permanent link UUID for this file. (default: auto-generated)"
},
"description": "Permanent link UUID for this file. (default: auto-generated)",
"required": false,
"x-syno-param": "permanent_link"
},
{
"name": "encrypted",
"in": "query",
"schema": {
"type": "boolean",
"description": "Whether the file is encrypted."
},
"description": "Whether the file is encrypted.",
"required": false,
"x-syno-param": "encrypted"
},
{
"name": "removed",
"in": "query",
"schema": {
"type": "boolean",
"description": "Whether the file is removed into recycle bin. This parameter is mainly used to create revision in the recycle bin, normal app should not use it. (default: false)"
},
"description": "Whether the file is removed into recycle bin. This parameter is mainly used to create revision in the recycle bin, normal app should not use it. (default: false)",
"required": false,
"x-syno-param": "removed"
},
{
"name": "type",
"in": "query",
"schema": {
"type": "string",
"description": "The type of file. Valid values are file, folder."
},
"description": "The type of file. Valid values are file, folder.",
"required": true,
"examples": {
"Create a folder named \"abc\" at \"/mydrive\".": {
"description": "Create a folder named \"abc\" at \"/mydrive\".",
"value": "folder"
}
},
"x-syno-param": "type"
},
{
"name": "path",
"in": "query",
"schema": {
"type": "string",
"description": "ID system format:\n 0. \"link:permanent_link\"\n 1. \"id:file_id\"\n 2. \"id:file_id/basename\"\n 3. \"/mydrive/{relative-path}\"\n 4. \"/team-folders/{team-folder-name}/{relative-path}\"\n 5. \"/views/{view_id}/{relative-path}\"\n 6. \"/volumes/{absolute-path}\""
},
"description": "ID system format:\n 0. \"link:permanent_link\"\n 1. \"id:file_id\"\n 2. \"id:file_id/basename\"\n 3. \"/mydrive/{relative-path}\"\n 4. \"/team-folders/{team-folder-name}/{relative-path}\"\n 5. \"/views/{view_id}/{relative-path}\"\n 6. \"/volumes/{absolute-path}\"",
"required": true,
"examples": {
"Create a folder named \"abc\" at \"/mydrive\".": {
"description": "Create a folder named \"abc\" at \"/mydrive\".",
"value": "/mydrive/abc"
}
},
"x-syno-param": "path"
}
]
},
"x-syno-api": "SYNO.SynologyDrive.Files",
"get": {
"x-syno-version": 10,
"x-syno-method": "get",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/Response.Template"
},
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"watermark_version",
"transient",
"dsm_path",
"adv_shared",
"enable_watermark",
"force_watermark_download",
"support_remote",
"disable_download",
"app_properties",
"revisions",
"content_snippet",
"hash",
"permanent_link",
"owner",
"shared_with",
"sync_to_device",
"shared",
"starred",
"encrypted",
"removed",
"max_id",
"change_id",
"sync_id",
"version_id",
"capabilities",
"size",
"change_time",
"modified_time",
"access_time",
"created_time",
"parent_id",
"content_type",
"display_path",
"path",
"file_id"
],
"properties": {
"uploaded_size": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": ""
},
"watermark_version": {
"type": "integer",
"format": "int64",
"minimum": 0,
"description": ""