valueKeyframed.json 633 B

12345678910111213141516171819202122232425
  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/valueKeyframe"
  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. }
  25. }