shapeProp.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema",
  3. "type": "object",
  4. "properties": {
  5. "c": {
  6. "description": "Closed property of shape",
  7. "extended_name": "Closed",
  8. "type": "boolean"
  9. },
  10. "i": {
  11. "description": "Bezier curve In points. Array of 2 dimensional arrays.",
  12. "extended_name": "In Point",
  13. "type": "array",
  14. "items": {
  15. "type": "array",
  16. "minItems": 2,
  17. "maxItems": 2,
  18. "items": {
  19. "type": "number"
  20. }
  21. }
  22. },
  23. "o": {
  24. "description": "Bezier curve Out points. Array of 2 dimensional arrays.",
  25. "extended_name": "Out Point",
  26. "type": "array",
  27. "items": {
  28. "type": "array",
  29. "minItems": 2,
  30. "maxItems": 2,
  31. "items": {
  32. "type": "number"
  33. }
  34. }
  35. },
  36. "v": {
  37. "description": "Bezier curve Vertices. Array of 2 dimensional arrays.",
  38. "extended_name": "Vertices",
  39. "type": "array",
  40. "items": {
  41. "type": "array",
  42. "minItems": 2,
  43. "maxItems": 2,
  44. "items": {
  45. "type": "number"
  46. }
  47. }
  48. }
  49. }
  50. }