point.json 976 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": 2
  25. },
  26. "v": {
  27. "title": "Value",
  28. "description": "Effect value.",
  29. "type": "object",
  30. "items": {
  31. "oneOf": [
  32. {
  33. "$ref": "#/properties/multiDimensional"
  34. },
  35. {
  36. "$ref": "#/properties/multiDimensionalKeyframed"
  37. }
  38. ],
  39. "type": "object"
  40. }
  41. }
  42. }
  43. }