##// END OF EJS Templates
Rename pyout --> execute_output
Jessica B. Hamrick -
Show More
@@ -181,7 +181,7 b''
181 "required": true,
181 "required": true,
182 "items": {
182 "items": {
183 "type": [
183 "type": [
184 {"$ref": "/definitions/pyout_output"},
184 {"$ref": "/definitions/execute_output"},
185 {"$ref": "/definitions/display_data_output"},
185 {"$ref": "/definitions/display_data_output"},
186 {"$ref": "/definitions/stream_output"}
186 {"$ref": "/definitions/stream_output"}
187 ]
187 ]
@@ -206,14 +206,14 b''
206 }
206 }
207 },
207 },
208
208
209 "pyout_output": {
209 "execute_output": {
210 "description": "Result of executing a code cell.",
210 "description": "Result of executing a code cell.",
211 "type": "object",
211 "type": "object",
212 "additionalProperties": false,
212 "additionalProperties": false,
213 "properties": {
213 "properties": {
214 "output_type": {
214 "output_type": {
215 "description": "Type of cell output.",
215 "description": "Type of cell output.",
216 "enum": ["pyout"],
216 "enum": ["execute_output"],
217 "required": true
217 "required": true
218 },
218 },
219 "metadata": {
219 "metadata": {
General Comments 0
You need to be logged in to leave comments. Login now