You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/devel_doc/openapi.json
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11650,23 +11650,26 @@
11650
11650
"attachment_type": {
11651
11651
"type": "string",
11652
11652
"title": "Attachment Type",
11653
-
"description": "The attachment type, like 'log', 'configuration' etc.",
11653
+
"description": "The attachment type, like 'log', 'configuration', 'image' etc.",
11654
11654
"examples": [
11655
-
"log"
11655
+
"log",
11656
+
"image"
11656
11657
]
11657
11658
},
11658
11659
"content_type": {
11659
11660
"type": "string",
11660
11661
"title": "Content Type",
11661
11662
"description": "The content type as defined in MIME standard",
11662
11663
"examples": [
11663
-
"text/plain"
11664
+
"text/plain",
11665
+
"image/jpeg",
11666
+
"image/png"
11664
11667
]
11665
11668
},
11666
11669
"content": {
11667
11670
"type": "string",
11668
11671
"title": "Content",
11669
-
"description": "The actual attachment content",
11672
+
"description": "The actual attachment content (text or base64-encoded image data)",
11670
11673
"examples": [
11671
11674
"warning: quota exceeded"
11672
11675
]
@@ -11680,7 +11683,7 @@
11680
11683
"content"
11681
11684
],
11682
11685
"title": "Attachment",
11683
-
"description": "Model representing an attachment that can be sent from the UI as part of query.\n\nA list of attachments can be an optional part of 'query' request.\n\nAttributes:\n attachment_type: The attachment type, like \"log\", \"configuration\"etc.\n content_type: The content type as defined in MIME standard\n content: The actual attachment content",
11686
+
"description": "Model representing an attachment that can be sent from the UI as part of query.\n\nA list of attachments can be an optional part of 'query' request.\n\nAttributes:\n attachment_type: The attachment type, like \"log\", \"configuration\", \"image\" etc.\n content_type: The content type as defined in MIME standard\n content: The actual attachment content (text or base64-encoded image data)",
0 commit comments