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: jupyter_server/services/api/api.yaml
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,10 @@ paths:
106
106
in: query
107
107
description: "Return content (0 for no content, 1 for return content)"
108
108
type: integer
109
+
- name: md5
110
+
in: query
111
+
description: "Return md5 hexdigest string of content (0 for no md5, 1 for return md5)"
112
+
type: integer
109
113
responses:
110
114
404:
111
115
description: No item found
@@ -885,7 +889,7 @@ definitions:
885
889
kernel:
886
890
$ref: "#/definitions/Kernel"
887
891
Contents:
888
-
description: "A contents object. The content and format keys may be null if content is not contained. If type is 'file', then the mimetype will be null."
892
+
description: "A contents object. The content and format keys may be null if content is not contained. The md5 maybe null if md5 is not contained. If type is 'file', then the mimetype will be null."
889
893
type: object
890
894
required:
891
895
- type
@@ -897,6 +901,7 @@ definitions:
897
901
- mimetype
898
902
- format
899
903
- content
904
+
- md5
900
905
properties:
901
906
name:
902
907
type: string
@@ -934,6 +939,9 @@ definitions:
934
939
format:
935
940
type: string
936
941
description: Format of content (one of null, 'text', 'base64', 'json')
942
+
md5:
943
+
type: string
944
+
description: "The md5 hexdigest string of content, if requested (otherwise null)."
0 commit comments