round.json 773 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "mn": {
  6. "title": "Match Name",
  7. "description": "After Effect's Match Name. Used for expressions.",
  8. "type": "string"
  9. },
  10. "nm": {
  11. "title": "Name",
  12. "description": "After Effect's Name. Used for expressions.",
  13. "type": "string"
  14. },
  15. "ty": {
  16. "title": "Type",
  17. "description": "Shape content type.",
  18. "type": "string",
  19. "const": "rd"
  20. },
  21. "r": {
  22. "title": "Radius",
  23. "description": "Rounded Corner Radius",
  24. "oneOf": [
  25. {
  26. "$ref": "#/properties/value"
  27. },
  28. {
  29. "$ref": "#/properties/valueKeyframed"
  30. }
  31. ],
  32. "type": "object"
  33. }
  34. }
  35. }