-
Notifications
You must be signed in to change notification settings - Fork 0
/
pruned.yaml
13819 lines (13804 loc) · 633 KB
/
pruned.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.1.0
info:
version: 1.4.17
title: Coda API
license:
name: Coda Developer Terms
url: https://coda.io/trust/developer
termsOfService: https://coda.io/trust/tos
contact:
name: API Support
url: https://coda.io
email: help+api@coda.io
x-logo:
url: https://cdn.coda.io/external/img/apilogo.png
backgroundColor: transparent
altText: Coda API
href: '#'
servers:
- url: https://coda.io/apis/v1
description: Coda API (v1)
security:
- Bearer: []
tags:
- name: Columns
description: |
While columns in Coda have user-friendly names, they also have immutable IDs that are used when reading and writing rows. These endpoints let you query the columns in a table and get basic information about them.
- name: Controls
description: |
Controls provide a user-friendly way to input a value that can affect other parts of the doc. This API lets you list controls and get their current values.
- name: Docs
description: |
Coda docs are foundational, top-level collaborative projects that contain pages. The API lets you list and search your docs to obtain basic metadata like titles and ownership information.
- name: Formulas
description: |
Formulas can be great for performing one-off computations, or used with tables and other formulas to compute a single value. With this API, you can discover formulas in a doc and obtain computed results.
- name: Pages
description: |
Pages in Coda offer canvases containing rich text, tables, controls, and other objects. At this time, this API lets you list and access pages in a doc.
- name: Rows
description: |
You'll likely use this part of the API the most. These endpoints let you retrieve row data from tables in Coda as well as create, upsert, update, and delete them. Most of these endpoints work for both base tables and views, but for inserting/upsering rows, you must use a base table.
- name: Tables and Views
description: |
If you're here, you know the power of tables in Coda. This API lets you list the tables and views in a Coda doc and obtain basic schema information.
paths:
/docs:
get:
operationId: listDocs
summary: List available docs
description: |
Returns a list of Coda docs accessible by the user. These are returned in the same order as on the docs page: reverse chronological by the latest event relevant to the user (last viewed, edited, or shared).
parameters:
- name: isOwner
in: query
description: Show only docs owned by the user.
schema:
type: boolean
- name: isPublished
in: query
description: Show only published docs.
schema:
type: boolean
- name: query
description: Search term used to filter down results.
in: query
example: Supercalifragilisticexpialidocious
schema:
type: string
- name: sourceDoc
in: query
description: Show only docs copied from the specified doc ID.
schema:
type: string
- name: isStarred
in: query
description: If true, returns docs that are starred. If false, returns docs that are not starred.
schema:
type: boolean
- name: inGallery
in: query
description: Show only docs visible within the gallery.
schema:
type: boolean
- name: workspaceId
in: query
description: Show only docs belonging to the given workspace.
schema:
type: string
- name: folderId
in: query
description: Show only docs belonging to the given folder.
schema:
type: string
- name: limit
description: Maximum number of results to return in this query.
in: query
example: 10
schema:
type: integer
default: 25
minimum: 1
- name: pageToken
description: An opaque token used to fetch the next page of results.
in: query
example: eyJsaW1pd
schema:
type: string
responses:
'200':
description: List of Coda docs matching the query.
content:
application/json:
schema:
description: List of Coda docs.
type: object
properties:
items:
type: array
items:
description: Metadata about a Coda doc.
type: object
properties:
id:
description: ID of the Coda doc.
type: string
example: AbCDeFGH
type:
description: The type of this resource.
type: string
enum:
- doc
x-tsType: Type.Doc
href:
description: API link to the Coda doc.
type: string
format: url
example: https://coda.io/apis/v1/docs/AbCDeFGH
browserLink:
description: Browser-friendly link to the Coda doc.
type: string
format: url
example: https://coda.io/d/_dAbCDeFGH
icon:
description: Info about the icon.
type: object
properties:
name:
description: Name of the icon.
type: string
type:
description: MIME type of the icon
type: string
browserLink:
description: Browser-friendly link to an icon.
type: string
format: url
example: https://cdn.coda.io/icons/png/color/icon-32.png
additionalProperties: false
required:
- name
- type
- browserLink
x-schema-name: icon
name:
description: Name of the doc.
type: string
example: Product Launch Hub
owner:
description: Email address of the doc owner.
type: string
format: email
example: user@example.com
ownerName:
description: Name of the doc owner.
type: string
example: Some User
docSize:
description: The number of components within a Coda doc.
type: object
properties:
totalRowCount:
description: The number of rows contained within all tables of the doc.
type: number
example: 31337
tableAndViewCount:
description: The total number of tables and views contained within the doc.
type: number
example: 42
pageCount:
description: The total number of page contained within the doc.
type: number
example: 10
overApiSizeLimit:
description: If true, indicates that the doc is over the API size limit.
type: boolean
example: false
additionalProperties: false
required:
- totalRowCount
- tableAndViewCount
- pageCount
- overApiSizeLimit
x-schema-name: DocSize
sourceDoc:
allOf:
- type: object
description: Reference to a Coda doc from which this doc was copied, if any.
additionalProperties: false
- description: Reference to a Coda doc.
type: object
properties:
id:
description: ID of the Coda doc.
type: string
example: AbCDeFGH
type:
description: The type of this resource.
type: string
enum:
- doc
x-tsType: Type.Doc
href:
description: API link to the Coda doc.
type: string
format: url
example: https://coda.io/apis/v1/docs/AbCDeFGH
browserLink:
description: Browser-friendly link to the Coda doc.
type: string
format: url
example: https://coda.io/d/_dAbCDeFGH
additionalProperties: false
required:
- id
- type
- browserLink
- href
x-schema-name: DocReference
createdAt:
description: Timestamp for when the doc was created.
type: string
format: date-time
example: '2018-04-11T00:18:57.946Z'
updatedAt:
description: Timestamp for when the doc was last modified.
type: string
format: date-time
example: '2018-04-11T00:18:57.946Z'
published:
description: Information about the publishing state of the document.
type: object
properties:
description:
description: Description of the published doc.
type: string
example: Hello World!
browserLink:
description: URL to the published doc.
type: string
example: https://coda.io/@coda/hello-world
imageLink:
description: URL to the cover image for the published doc.
type: string
discoverable:
description: If true, indicates that the doc is discoverable.
type: boolean
example: true
earnCredit:
description: |
If true, new users may be required to sign in to view content within this document. You will receive Coda credit for each user who signs up via your doc.
type: boolean
example: true
mode:
description: Which interaction mode the published doc should use.
type: string
enum:
- view
- play
- edit
x-schema-name: DocPublishMode
x-tsEnumNames:
- View
- Play
- Edit
categories:
description: Categories applied to the doc.
type: array
items:
description: The category applied to a doc.
type: object
properties:
name:
description: Name of the category.
type: string
example: Project Management
additionalProperties: false
required:
- name
x-schema-name: DocCategory
example:
- Project Management
additionalProperties: false
required:
- browserLink
- discoverable
- earnCredit
- mode
- categories
x-schema-name: DocPublished
folder:
description: Reference to a Coda folder.
type: object
properties:
id:
description: ID of the Coda folder.
type: string
example: fl-1Ab234
type:
description: The type of this resource.
type: string
enum:
- folder
x-tsType: Type.Folder
browserLink:
description: Browser-friendly link to the folder.
type: string
format: url
example: https://coda.io/docs?folderId=fl-1Ab234
name:
description: Name of the folder; included if the user has access to the folder.
type: string
example: My docs
additionalProperties: false
required:
- id
- type
- browserLink
x-schema-name: FolderReference
workspace:
description: Reference to a Coda workspace.
type: object
properties:
id:
description: ID of the Coda workspace.
type: string
example: ws-1Ab234
type:
description: The type of this resource.
type: string
enum:
- workspace
x-tsType: Type.Workspace
organizationId:
description: ID of the organization bound to this workspace, if any.
type: string
example: org-2Bc456
browserLink:
description: Browser-friendly link to the Coda workspace.
type: string
format: url
example: https://coda.io/docs?workspaceId=ws-1Ab234
name:
description: Name of the workspace; included if the user has access to the workspace.
type: string
example: My workspace
additionalProperties: false
required:
- id
- type
- browserLink
x-schema-name: WorkspaceReference
workspaceId:
description: ID of the Coda workspace containing this doc.
type: string
example: ws-1Ab234
deprecated: true
folderId:
description: ID of the Coda folder containing this doc.
type: string
example: fl-1Ab234
deprecated: true
additionalProperties: false
required:
- id
- type
- href
- browserLink
- name
- owner
- ownerName
- createdAt
- updatedAt
- workspace
- folder
- workspaceId
- folderId
x-schema-name: Doc
href:
description: API link to these results
type: string
format: url
example: https://coda.io/apis/v1/docs?limit=20
nextPageToken:
description: If specified, an opaque token used to fetch the next page of results.
type: string
example: eyJsaW1pd
nextPageLink:
allOf:
- description: If specified, a link that can be used to fetch the next page of results.
type: string
format: url
- type: string
example: https://coda.io/apis/v1/docs?pageToken=eyJsaW1pd
additionalProperties: false
required:
- items
x-schema-name: DocList
'401':
description: The API token is invalid or has expired.
content:
application/json:
schema:
description: An HTTP error resulting from an unsuccessful request.
properties:
statusCode:
description: HTTP status code of the error.
type: number
example: 401
statusMessage:
description: HTTP status message of the error.
type: string
example: Unauthorized
message:
description: Any additional context on the error, or the same as `statusMessage` otherwise.
type: string
example: Unauthorized
additionalProperties: false
required:
- statusCode
- statusMessage
- message
'403':
description: The API token does not grant access to this resource.
content:
application/json:
schema:
description: An HTTP error resulting from an unsuccessful request.
properties:
statusCode:
description: HTTP status code of the error.
type: number
example: 403
statusMessage:
description: HTTP status message of the error.
type: string
example: Forbidden
message:
description: Any additional context on the error, or the same as `statusMessage` otherwise.
type: string
example: Forbidden
additionalProperties: false
required:
- statusCode
- statusMessage
- message
'404':
description: The resource could not be located with the current API token.
content:
application/json:
schema:
description: An HTTP error resulting from an unsuccessful request.
properties:
statusCode:
description: HTTP status code of the error.
type: number
example: 404
statusMessage:
description: HTTP status message of the error.
type: string
example: Not Found
message:
description: Any additional context on the error, or the same as `statusMessage` otherwise.
type: string
example: Not Found
additionalProperties: false
required:
- statusCode
- statusMessage
- message
'429':
description: The client has sent too many requests.
content:
application/json:
schema:
description: An HTTP error resulting from an unsuccessful request.
properties:
statusCode:
description: HTTP status code of the error.
type: number
example: 429
statusMessage:
description: HTTP status message of the error.
type: string
example: Too Many Requests
message:
description: Any additional context on the error, or the same as `statusMessage` otherwise.
type: string
example: Too Many Requests
additionalProperties: false
required:
- statusCode
- statusMessage
- message
tags:
- Docs
post:
operationId: createDoc
summary: Create doc
description: |
Creates a new Coda doc, optionally copying an existing doc. Note that creating a doc requires you to be a Doc Maker in the applicable workspace (or be auto-promoted to one).
requestBody:
description: Parameters for creating the doc.
required: true
content:
application/json:
schema:
description: Payload for creating a new doc.
type: object
properties:
title:
description: Title of the new doc. Defaults to 'Untitled'.
type: string
example: Project Tracker
sourceDoc:
description: An optional doc ID from which to create a copy.
type: string
example: iJKlm_noPq
timezone:
description: The timezone to use for the newly created doc.
type: string
example: America/Los_Angeles
folderId:
description: |
The ID of the folder within which to create this doc. Defaults to your "My docs" folder in the oldest workspace you joined; this is subject to change. You can get this ID by opening the folder in the docs list on your computer and grabbing the `folderId` query parameter.
type: string
example: fl-ABcdEFgHJi
initialPage:
allOf:
- type: object
description: The contents of the initial page of the doc.
additionalProperties: false
- description: Payload for creating a new page in a doc.
type: object
properties:
name:
description: Name of the page.
type: string
example: Launch Status
subtitle:
description: Subtitle of the page.
type: string
example: See the status of launch-related tasks.
iconName:
description: Name of the icon.
type: string
example: rocket
imageUrl:
description: Url of the cover image to use.
type: string
example: https://example.com/image.jpg
parentPageId:
description: The ID of this new page's parent, if creating a subpage.
type: string
example: canvas-tuVwxYz
pageContent:
description: Content that can be added to a page at creation time, either text (or rich text) or a URL to create a full-page embed.
oneOf:
- type: object
required:
- type
- canvasContent
additionalProperties: false
properties:
type:
description: Indicates a page containing canvas content.
type: string
enum:
- canvas
x-tsType: PageType.Canvas
canvasContent:
description: Content for a page (canvas).
type: object
properties:
format:
description: Supported content types for page (canvas) content.
type: string
enum:
- html
- markdown
x-schema-name: PageContentFormat
x-tsEnumNames:
- Html
- Markdown
content:
description: The actual page content.
example: <p><b>This</b> is rich text</p>
type: string
additionalProperties: false
required:
- format
- content
x-schema-name: PageContent
- type: object
required:
- type
- url
additionalProperties: false
properties:
type:
description: Indicates a page that embeds other content.
type: string
enum:
- embed
x-tsType: PageType.Embed
url:
description: The URL of the content to embed.
type: string
example: https://example.com
renderMethod:
description: Render mode for a page using the Embed page type.
type: string
enum:
- compatibility
- standard
x-schema-name: PageEmbedRenderMethod
x-tsEnumNames:
- Compatibility
- Standard
- type: object
required:
- type
- mode
- sourcePageId
- includeSubpages
- sourceDocId
additionalProperties: false
properties:
type:
description: Indicates a page that embeds other Coda content.
type: string
enum:
- syncPage
x-tsType: PageType.SyncPage
mode:
description: Indicates a single-page sync page.
type: string
enum:
- page
x-tsType: SyncPageType.Page
includeSubpages:
description: Include subpages in the sync page.
type: boolean
sourcePageId:
description: The page id to insert as a sync page.
type: string
example: canvas-IjkLmnO
sourceDocId:
description: The id of the document to insert as a sync page.
type: string
example: sHbI4uIwiK
- type: object
required:
- type
- mode
- sourceDocId
additionalProperties: false
properties:
type:
description: Indicates a page that embeds other content.
type: string
enum:
- syncPage
x-tsType: PageType.SyncPage
mode:
description: Indicates a full doc sync page.
type: string
enum:
- document
x-tsType: SyncPageType.Document
sourceDocId:
description: The id of the document to insert as a sync page.
type: string
example: sHbI4uIwiK
x-schema-name: PageCreateContent
additionalProperties: false
x-schema-name: PageCreate
additionalProperties: false
x-schema-name: DocCreate
responses:
'201':
description: Info about the created doc.
content:
application/json:
schema:
description: The result of a doc creation.
type: object
properties:
id:
description: ID of the Coda doc.
type: string
example: AbCDeFGH
type:
description: The type of this resource.
type: string
enum:
- doc
x-tsType: Type.Doc
href:
description: API link to the Coda doc.
type: string
format: url
example: https://coda.io/apis/v1/docs/AbCDeFGH
browserLink:
description: Browser-friendly link to the Coda doc.
type: string
format: url
example: https://coda.io/d/_dAbCDeFGH
icon:
description: Info about the icon.
type: object
properties:
name:
description: Name of the icon.
type: string
type:
description: MIME type of the icon
type: string
browserLink:
description: Browser-friendly link to an icon.
type: string
format: url
example: https://cdn.coda.io/icons/png/color/icon-32.png
additionalProperties: false
required:
- name
- type
- browserLink
x-schema-name: icon
name:
description: Name of the doc.
type: string
example: Product Launch Hub
owner:
description: Email address of the doc owner.
type: string
format: email
example: user@example.com
ownerName:
description: Name of the doc owner.
type: string
example: Some User
docSize:
description: The number of components within a Coda doc.
type: object
properties:
totalRowCount:
description: The number of rows contained within all tables of the doc.
type: number
example: 31337
tableAndViewCount:
description: The total number of tables and views contained within the doc.
type: number
example: 42
pageCount:
description: The total number of page contained within the doc.
type: number
example: 10
overApiSizeLimit:
description: If true, indicates that the doc is over the API size limit.
type: boolean
example: false
additionalProperties: false
required:
- totalRowCount
- tableAndViewCount
- pageCount
- overApiSizeLimit
x-schema-name: DocSize
sourceDoc:
allOf:
- type: object
description: Reference to a Coda doc from which this doc was copied, if any.
additionalProperties: false
- description: Reference to a Coda doc.
type: object
properties:
id:
description: ID of the Coda doc.
type: string
example: AbCDeFGH
type:
description: The type of this resource.
type: string
enum:
- doc
x-tsType: Type.Doc
href:
description: API link to the Coda doc.
type: string
format: url
example: https://coda.io/apis/v1/docs/AbCDeFGH
browserLink:
description: Browser-friendly link to the Coda doc.
type: string
format: url
example: https://coda.io/d/_dAbCDeFGH
additionalProperties: false
required:
- id
- type
- browserLink
- href
x-schema-name: DocReference
createdAt:
description: Timestamp for when the doc was created.
type: string
format: date-time
example: '2018-04-11T00:18:57.946Z'
updatedAt:
description: Timestamp for when the doc was last modified.
type: string
format: date-time
example: '2018-04-11T00:18:57.946Z'
published:
description: Information about the publishing state of the document.
type: object
properties:
description:
description: Description of the published doc.
type: string
example: Hello World!
browserLink:
description: URL to the published doc.
type: string
example: https://coda.io/@coda/hello-world
imageLink:
description: URL to the cover image for the published doc.
type: string
discoverable:
description: If true, indicates that the doc is discoverable.
type: boolean
example: true
earnCredit:
description: |
If true, new users may be required to sign in to view content within this document. You will receive Coda credit for each user who signs up via your doc.
type: boolean
example: true
mode:
description: Which interaction mode the published doc should use.
type: string
enum:
- view
- play
- edit
x-schema-name: DocPublishMode
x-tsEnumNames:
- View
- Play
- Edit
categories:
description: Categories applied to the doc.
type: array
items:
description: The category applied to a doc.
type: object
properties:
name:
description: Name of the category.
type: string
example: Project Management
additionalProperties: false
required:
- name
x-schema-name: DocCategory
example:
- Project Management
additionalProperties: false
required:
- browserLink
- discoverable
- earnCredit
- mode
- categories
x-schema-name: DocPublished
folder:
description: Reference to a Coda folder.
type: object
properties:
id:
description: ID of the Coda folder.
type: string
example: fl-1Ab234
type:
description: The type of this resource.
type: string
enum:
- folder
x-tsType: Type.Folder
browserLink:
description: Browser-friendly link to the folder.
type: string
format: url
example: https://coda.io/docs?folderId=fl-1Ab234
name:
description: Name of the folder; included if the user has access to the folder.
type: string
example: My docs
additionalProperties: false
required:
- id
- type
- browserLink
x-schema-name: FolderReference
workspace:
description: Reference to a Coda workspace.
type: object
properties:
id:
description: ID of the Coda workspace.
type: string
example: ws-1Ab234
type:
description: The type of this resource.
type: string
enum:
- workspace
x-tsType: Type.Workspace
organizationId:
description: ID of the organization bound to this workspace, if any.
type: string
example: org-2Bc456
browserLink:
description: Browser-friendly link to the Coda workspace.
type: string
format: url
example: https://coda.io/docs?workspaceId=ws-1Ab234
name:
description: Name of the workspace; included if the user has access to the workspace.
type: string
example: My workspace
additionalProperties: false
required:
- id
- type
- browserLink
x-schema-name: WorkspaceReference
workspaceId:
description: ID of the Coda workspace containing this doc.
type: string
example: ws-1Ab234
deprecated: true
folderId:
description: ID of the Coda folder containing this doc.
type: string
example: fl-1Ab234
deprecated: true
requestId:
description: An arbitrary unique identifier for this request.
type: string
example: abc-123-def-456
additionalProperties: false
required:
- id
- type
- href
- browserLink
- name
- owner
- ownerName
- createdAt
- updatedAt
- workspace
- folder
- workspaceId
- folderId
x-schema-name: Doc
'400':
description: The request parameters did not conform to expectations.
content:
application/json:
schema:
description: An HTTP error resulting from an unsuccessful request.
properties:
statusCode:
description: HTTP status code of the error.
type: number
example: 400
statusMessage:
description: HTTP status message of the error.
type: string