You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
688 B

4 years ago
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "description": "Jupyter Interactive Widget View JSON schema.",
  4. "type": "object",
  5. "properties" : {
  6. "version_major" : {
  7. "description": "Format version (major)",
  8. "type": "number",
  9. "minimum": 1,
  10. "maximum": 1
  11. },
  12. "version_minor" : {
  13. "description": "Format version (minor)",
  14. "type": "number"
  15. },
  16. "model_id": {
  17. "description": "Unique identifier of the widget model to be displayed",
  18. "type": "string"
  19. },
  20. "required": [ "model_id" ]
  21. },
  22. "additionalProperties": false
  23. }