##// END OF EJS Templates
Move collapsed and autoscroll to metadata
Move collapsed and autoscroll to metadata

File last commit:

r16894:5f99efb3
r16894:5f99efb3
Show More
v4.withref.json
355 lines | 13.1 KiB | application/json | JsonLexer
Jessica B. Hamrick
Copy v3 --> v4
r16871 {
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "$schema": "http://json-schema.org/draft-03/schema#",
"description": "IPython Notebook v4.0 JSON schema.",
"type": "object",
"additionalProperties": false,
"properties": {
"metadata": {
"description": "Notebook root-level metadata.",
"type": "object",
"required": true,
"additionalProperties": true,
"properties": {
"language": {
"description": "Language of the notebook's kernel.",
"type": "string",
"required": true
},
"kernel_info": {
Jessica B. Hamrick
Fix JSON syntax errors
r16884 "description": "Other kernel information, to be determined.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"required": true,
"additionalProperties": true
Jessica B. Hamrick
Add signature to notebook metadata
r16885 },
"signature": {
"description": "SHA256 hash of the notebook.",
"type": "string",
"required": true,
Jessica B. Hamrick
Fix a few errors
r16887 "pattern": "^sha256:[0-9a-f]{64}$"
Jessica B. Hamrick
Move language key from code cells to top-level notebook metadata
r16878 }
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 }
},
"nbformat_minor": {
"description": "Notebook format (minor number). Incremented for slight changes to the notebook format.",
"type": "integer",
"required": true,
"minimum": 0
},
"nbformat": {
"description": "Notebook format (major number). Incremented between backwards incompatible changes to the notebook format.",
"type": "integer",
"required": true,
"minimum": 4
},
"orig_nbformat": {
"description": "Original notebook format (major number) before converting the notebook between versions.",
"type": "integer",
"required": false,
"minimum": 1
},
"cells": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Array of cells of the current notebook.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "array",
"required": true,
"items": {
"type": [
Jessica B. Hamrick
Fix a few errors
r16887 {"$ref": "/definitions/raw_cell"},
{"$ref": "/definitions/markdown_cell"},
{"$ref": "/definitions/heading_cell"},
{"$ref": "/definitions/code_cell"}
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 ]
Jessica B. Hamrick
Copy v3 --> v4
r16871 }
}
},
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "definitions": {
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "raw_cell": {
"description": "Notebook raw nbconvert cell.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"additionalProperties": false,
"properties": {
"cell_type": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "String identifying the type of cell.",
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "enum": ["raw"],
"required": true
},
"metadata": {
"description": "Cell-level metadata.",
"type": "object",
"required": true,
"additionalProperties": true,
"properties": {
"format": {
"description": "Raw cell format, to be determined.",
"type": "string",
"required": false
}
}
},
"source": {
"description": "Contents of the cell, represented as an array of lines.",
"type": "array",
"required": true,
"items": {"type": "string"}
}
}
},
"markdown_cell": {
"description": "Notebook markdown cell.",
"type": "object",
"additionalProperties": false,
"properties": {
"cell_type": {
"description": "String identifying the type of cell.",
"enum": ["markdown"],
Jessica B. Hamrick
Make indent level be consistent
r16874 "required": true
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"metadata": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Cell-level metadata.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"required": true,
"additionalProperties": true
},
"source": {
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "description": "Contents of the cell, represented as an array of lines.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "array",
"required": true,
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "items": {"type": "string"}
Jessica B. Hamrick
Make indent level be consistent
r16874 }
Jessica B. Hamrick
Copy v3 --> v4
r16871 }
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
Jessica B. Hamrick
Copy v3 --> v4
r16871
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "heading_cell": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Notebook heading cell.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"additionalProperties": false,
"properties": {
"cell_type": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "String identifying the type of cell.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "enum": ["heading"],
Jessica B. Hamrick
Make indent level be consistent
r16874 "required": true
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"metadata": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Cell-level metadata.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"required": true,
"additionalProperties": true
},
"source": {
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "description": "Contents of the cell, represented as an array of lines.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "array",
"required": true,
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "items": {"type": "string"}
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"level": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Level of heading cells.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "integer",
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "required": true,
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "minimum": 1,
"maximum": 6
Jessica B. Hamrick
Make indent level be consistent
r16874 }
Jessica B. Hamrick
Make cell content key uniform...
r16876 }
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"code_cell": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Notebook code cell.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"additionalProperties": false,
"properties": {
"cell_type": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "String identifying the type of cell.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "enum": ["code"],
"required": true
},
"metadata": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "Cell-level metadata.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "object",
"required": true,
Jessica B. Hamrick
Move collapsed and autoscroll to metadata
r16894 "additionalProperties": true,
"properties": {
"collapsed": {
"description": "Whether the cell is collapsed/expanded.",
"type": "boolean",
"required": true
},
"autoscroll": {
"description": "Whether the cell's output should autoscroll.",
"type": "boolean",
"required": true
}
}
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"source": {
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "description": "Contents of the cell, represented as an array of lines.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "array",
"required": true,
Jessica B. Hamrick
Add separate raw cell type, fix "source" property of cells
r16886 "items": {"type": "string"}
Jessica B. Hamrick
Fix JSON syntax errors
r16884 },
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "outputs": {
Jessica B. Hamrick
Fix errors
r16890 "description": "Execution, display, or stream outputs.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": "array",
Jessica B. Hamrick
Add skeleton for different output types
r16888 "required": true,
Jessica B. Hamrick
Fix errors
r16890 "items": {
"type": [
Jessica B. Hamrick
Rename pyout --> execute_output
r16891 {"$ref": "/definitions/execute_output"},
Jessica B. Hamrick
Fix errors
r16890 {"$ref": "/definitions/display_data_output"},
Jessica B. Hamrick
Add error output type, and rename pyerr --> error
r16892 {"$ref": "/definitions/stream_output"},
{"$ref": "/definitions/error_output"}
Jessica B. Hamrick
Fix errors
r16890 ]
}
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 },
"prompt_number": {
Jessica B. Hamrick
Misc style changes to descriptions
r16883 "description": "The code cell's prompt number. Will be null if the cell has not been run.",
Jessica B. Hamrick
Conform better to JSON schema version 3
r16882 "type": ["integer", "null"],
"required": true,
"minimum": 0
}
Jessica B. Hamrick
Copy v3 --> v4
r16871 }
Jessica B. Hamrick
Add skeleton for different output types
r16888 },
Jessica B. Hamrick
Rename pyout --> execute_output
r16891 "execute_output": {
Jessica B. Hamrick
Flesh out output types
r16889 "description": "Result of executing a code cell.",
"type": "object",
Jessica B. Hamrick
Fix errors
r16890 "additionalProperties": false,
Jessica B. Hamrick
Flesh out output types
r16889 "properties": {
"output_type": {
"description": "Type of cell output.",
Jessica B. Hamrick
Rename pyout --> execute_output
r16891 "enum": ["execute_output"],
Jessica B. Hamrick
Flesh out output types
r16889 "required": true
},
"metadata": {
"description": "Cell output metadata.",
"type": "object",
"required": true,
"additionalProperties": true
},
"prompt_number": {
"description": "The code cell's prompt number. Will be null if the cell has not been run.",
"type": ["integer", "null"],
"required": true,
"minimum": 0
Jessica B. Hamrick
Fix errors
r16890 },
Jessica B. Hamrick
Flesh out output types
r16889 "text": {
"description": "The cell's text output, represented as an array of strings.",
"type": "array",
"required": false,
"items": {"type": "string"}
},
"html": {
"description": "The cell's html output, represented as an array of strings.",
"type": "array",
"required": false,
"items": {"type": "string"}
},
"png": {
"description": "The cell's png output.",
"type": "string",
Jessica B. Hamrick
Fix errors
r16890 "required": false
Jessica B. Hamrick
Flesh out output types
r16889 }
}
Jessica B. Hamrick
Add skeleton for different output types
r16888 },
"display_data_output": {
Jessica B. Hamrick
Flesh out output types
r16889 "description": "Display data output from a code cell.",
"type": "object",
Jessica B. Hamrick
Fix errors
r16890 "additionalProperties": false,
Jessica B. Hamrick
Flesh out output types
r16889 "properties": {
"output_type": {
"description": "Type of cell output.",
"enum": ["display_data"],
"required": true
},
"metadata": {
"description": "Cell output metadata.",
"type": "object",
"required": true,
"additionalProperties": true
},
"text": {
"description": "The display data text output, represented as an array of strings.",
"type": "array",
"required": false,
"items": {"type": "string"}
},
"javascript": {
"description": "The cell's javascript output, represented as an array of strings.",
"type": "array",
"required": false,
"items": {"type": "string"}
},
Jessica B. Hamrick
Fix errors
r16890 "png": {
"description": "The cell's png output.",
"type": "string",
"required": false
}
Jessica B. Hamrick
Flesh out output types
r16889 }
Jessica B. Hamrick
Add skeleton for different output types
r16888 },
"stream_output": {
Jessica B. Hamrick
Flesh out output types
r16889 "description": "Stream output from a code cell.",
"type": "object",
Jessica B. Hamrick
Fix errors
r16890 "additionalProperties": false,
Jessica B. Hamrick
Flesh out output types
r16889 "properties": {
"output_type": {
"description": "Type of cell output.",
"enum": ["stream"],
"required": true
},
"metadata": {
"description": "Cell output metadata.",
"type": "object",
"required": true,
"additionalProperties": true
},
"stream": {
"description": "The stream type/destination.",
"type": "string",
"required": true
},
"text": {
"description": "The stream's text output, represented as an array of strings.",
"type": "array",
"required": false,
"items": {"type": "string"}
}
}
Jessica B. Hamrick
Add error output type, and rename pyerr --> error
r16892 },
"error_output": {
"description": "Output of an error that occurred during code cell execution.",
"type": "object",
"additionalProperties": false,
"properties": {
"output_type": {
"description": "Type of cell output.",
"enum": ["error"],
"required": true
},
"metadata": {
"description": "Cell output metadata.",
"type": "object",
"required": true,
"additionalProperties": true
},
"ename": {
"description": "The name of the error.",
"type": "string",
"required": true
},
"evalue": {
"description": "The value, or message, of the error.",
"type": "string",
"required": true
},
"traceback": {
"description": "The error's traceback, represented as an array of strings.",
"type": "array",
Jessica B. Hamrick
Make traceback be required
r16893 "required": true,
Jessica B. Hamrick
Add error output type, and rename pyerr --> error
r16892 "items": {"type": "string"}
}
}
Jessica B. Hamrick
Copy v3 --> v4
r16871 }
}
}