scene.json 548 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "description":"An application's scene instance declarations",
  3. "type": "object",
  4. "properties":{
  5. "type": {
  6. "type": "string",
  7. "description": "Scene Instance Type (Class)"
  8. },
  9. "models": {
  10. "type": "array",
  11. "items": {"$ref": "/jdoe/test/schema/model"}
  12. },
  13. "views": {
  14. "type": "array",
  15. "items": {
  16. "type": "object",
  17. "properties" : {
  18. "id": {
  19. "type": "string"
  20. },
  21. "view": "$ref": "/jdoe/test/schema/view",
  22. "params": {
  23. "type": "object"
  24. }
  25. }
  26. }
  27. },
  28. "additionalProperties": true
  29. }