tint.json 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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": 20
  25. },
  26. "ef": {
  27. "title": "Effects",
  28. "description": "Effect List of properties.",
  29. "type": "array",
  30. "items": [
  31. {
  32. "$ref": "#/effects/color"
  33. },
  34. {
  35. "$ref": "#/effects/color"
  36. },
  37. {
  38. "$ref": "#/effects/slider"
  39. }
  40. ]
  41. }
  42. }
  43. }