textShape.json 471 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "number",
  4. "oneOf": [
  5. {
  6. "standsFor": "Square",
  7. "const": 1
  8. },
  9. {
  10. "standsFor": "Ramp Up",
  11. "const": 2
  12. },
  13. {
  14. "standsFor": "Ramp Down",
  15. "const": 3
  16. },
  17. {
  18. "standsFor": "Triangle",
  19. "const": 4
  20. },
  21. {
  22. "standsFor": "Round",
  23. "const": 5
  24. },
  25. {
  26. "standsFor": "Smooth",
  27. "const": 6
  28. }
  29. ],
  30. "default": 1
  31. }