/usr/lib/python3/dist-packages/ipywidgets/state.schema.json is in python3-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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Jupyter Interactive Widget State 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"
},
"state": {
"description": "Model State for All Widget Models",
"type": "object",
"additionalProperties": true,
"additionalProperties" : {
"type": "object",
"properties": {
"model_name": {
"description" : "Name of the JavaScript class holding the model implementation",
"type": "string"
},
"model_module": {
"description" : "Name of the JavaScript module holding the model implementation",
"type": "string"
},
"model_module_version": {
"description" : "Semver range for the JavaScript module holding the model implementation",
"type": "string"
},
"state": {
"description" : "Serialized state of the model",
"type": "object",
"additional_properties": true
}
},
"required": [ "model_name", "model_module", "state" ],
"additionalProperties": false
}
}
},
"required": [ "version_major", "version_minor", "state" ],
"additionalProperties": false
}
|