repeater.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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": "rp"
  20. },
  21. "c": {
  22. "title": "Copies",
  23. "description": "Number of Copies",
  24. "oneOf": [
  25. {
  26. "$ref": "#/properties/value"
  27. },
  28. {
  29. "$ref": "#/properties/valueKeyframed"
  30. }
  31. ],
  32. "type": "object",
  33. "default": {"a": 0, "k": 1}
  34. },
  35. "o": {
  36. "title": "Offset",
  37. "description": "Offset of Copies",
  38. "oneOf": [
  39. {
  40. "$ref": "#/properties/value"
  41. },
  42. {
  43. "$ref": "#/properties/valueKeyframed"
  44. }
  45. ],
  46. "type": "object",
  47. "default": {"a": 0, "k": 0}
  48. },
  49. "m": {
  50. "title": "Composite",
  51. "description": "Composite of copies",
  52. "$ref": "#/helpers/composite",
  53. "type": "number",
  54. "default": 1
  55. },
  56. "tr": {
  57. "title": "Transform",
  58. "description": "Transform values for each repeater copy",
  59. "$ref": "#/helpers/transform",
  60. "type": "object"
  61. }
  62. }
  63. }