fill.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "ix": {
  6. "title": "Effect Index",
  7. "description": "Effect Index. Used for expressions.",
  8. "type": "number"
  9. },
  10. "mn": {
  11. "title": "Match Name",
  12. "description": "After Effect's Match Name. Used for expressions.",
  13. "type": "string"
  14. },
  15. "nm": {
  16. "title": "Name",
  17. "description": "After Effect's Name. Used for expressions.",
  18. "type": "string"
  19. },
  20. "ty": {
  21. "title": "Type",
  22. "description": "Effect type.",
  23. "type": "number",
  24. "const": 21
  25. },
  26. "ef": {
  27. "title": "Effects",
  28. "description": "Effect List of properties.",
  29. "items": [
  30. {
  31. "$ref": "#/effects/point"
  32. },
  33. {
  34. "$ref": "#/effects/dropDown"
  35. },
  36. {
  37. "$ref": "#/effects/color"
  38. },
  39. {
  40. "$ref": "#/effects/dropDown"
  41. },
  42. {
  43. "$ref": "#/effects/slider"
  44. },
  45. {
  46. "$ref": "#/effects/slider"
  47. },
  48. {
  49. "$ref": "#/effects/slider"
  50. }
  51. ],
  52. "type": "array"
  53. }
  54. }
  55. }