multiDimensionalKeyframed.json 974 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "k": {
  6. "description": "Property Value keyframes",
  7. "extended_name": "Keyframes",
  8. "type": "array",
  9. "items": {
  10. "type": "object",
  11. "$ref": "#/properties/offsetKeyframe"
  12. }
  13. },
  14. "x": {
  15. "description": "Property Expression. An AE expression that modifies the value.",
  16. "extended_name": "Expression",
  17. "type": "string"
  18. },
  19. "ix": {
  20. "description": "Property Index. Used for expressions.",
  21. "extended_name": "Property Index",
  22. "type": "string"
  23. },
  24. "ti": {
  25. "description": "In Spatial Tangent. Only for spatial properties. Array of numbers.",
  26. "extended_name": "In Tangent",
  27. "type": "array"
  28. },
  29. "to": {
  30. "description": "Out Spatial Tangent. Only for spatial properties. Array of numbers.",
  31. "extended_name": "Out Tangent",
  32. "type": "array"
  33. }
  34. }
  35. }