/usr/lib/python2.7/dist-packages/ipywidgets/view.schema.json is in python-ipywidgets 6.0.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Jupyter Interactive Widget View JSON schema.",
"type": "object",
"properties" : {
"version_major" : {
"description": "Format version (major)",
"type": "number",
"minimum": 1,
"maximum": 1
},
"version_minor" : {
"description": "Format version (minor)",
"type": "number"
},
"model_id": {
"description": "Unique identifier of the widget model to be displayed",
"type": "string"
},
"required": [ "model_id" ]
},
"additionalProperties": false
}
|