checkBox.json 887 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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": 7
  25. },
  26. "v": {
  27. "title": "Value",
  28. "description": "Effect value.",
  29. "oneOf": [
  30. {
  31. "$ref": "#/properties/value"
  32. },
  33. {
  34. "$ref": "#/properties/valueKeyframed"
  35. }
  36. ],
  37. "type": "object"
  38. }
  39. }
  40. }