From 7d10ee7cce979dc1937c54bfb824e3db1e36fdcb 2014-06-09 18:52:03 From: Jessica B. Hamrick Date: 2014-06-09 18:52:03 Subject: [PATCH] Fix a few small spacing things --- diff --git a/IPython/nbformat/v4/v4.withref.json b/IPython/nbformat/v4/v4.withref.json index d775162..3d0320f 100644 --- a/IPython/nbformat/v4/v4.withref.json +++ b/IPython/nbformat/v4/v4.withref.json @@ -1,20 +1,20 @@ { "description": "custom json structure with references to generate notebook schema", - "notebook":{ + "notebook": { "type": "object", "description": "notebook v4.0 root schema", "$schema": "http://json-schema.org/draft-03/schema", "id": "#notebook", "required": true, "additionalProperties": false, - "properties":{ + "properties": { "metadata": { "type": "object", "id": "metadata", "required": true, "description": "the metadata atribute can contain any additionnal information", "additionalProperties": true, - "properties":{ + "properties": { "name": { "id": "name", "description": "the title of the notebook", @@ -63,7 +63,7 @@ "id": "#cell", "required": true, "additionalProperties": false, - "properties":{ + "properties": { "cell_type": { "type": "string", "id": "cell_type", @@ -100,18 +100,18 @@ "any_cell": { "description": "Meta cell type that match any cell type", - "type": [{"$ref": "/text_cell"},{"$ref":"/code_cell"}], + "type": [{"$ref": "/text_cell"}, {"$ref":"/code_cell"}], "$schema": "http://json-schema.org/draft-03/schema" }, - "code_cell":{ + "code_cell": { "type": "object", "$schema": "http://json-schema.org/draft-03/schema", "description": "Cell used to execute code", "id": "#cell", "required": true, "additionalProperties": false, - "properties":{ + "properties": { "cell_type": { "type": "string", "id": "cell_type", @@ -144,7 +144,7 @@ "type": "array" }, "prompt_number": { - "type": ["integer","null"], + "type": ["integer", "null"], "required": false, "minimum": 0 },