shape.json 695 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "k": {
  6. "description": "Property Value",
  7. "extended_name": "Value",
  8. "type": "object",
  9. "$ref": "#/properties/shapeProp"
  10. },
  11. "x": {
  12. "description": "Property Expression. An AE expression that modifies the value.",
  13. "extended_name": "Expression",
  14. "type": "string"
  15. },
  16. "ix": {
  17. "description": "Property Index. Used for expressions.",
  18. "extended_name": "Property Index",
  19. "type": "string"
  20. },
  21. "a": {
  22. "description": "Defines if property is animated",
  23. "extended_name": "Animated",
  24. "type": "number"
  25. }
  26. }
  27. }