merge.json 700 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "mn": {
  6. "title": "Match Name",
  7. "description": "After Effect's Match Name. Used for expressions.",
  8. "type": "string"
  9. },
  10. "nm": {
  11. "title": "Name",
  12. "description": "After Effect's Name. Used for expressions.",
  13. "type": "string"
  14. },
  15. "ty": {
  16. "title": "Type",
  17. "description": "Shape content type. THIS FEATURE IS NOT SUPPORTED. It's exported because if you export it, they will come.",
  18. "type": "string",
  19. "const": "mm"
  20. },
  21. "mm": {
  22. "title": "Merge Mode",
  23. "description": "Merge Mode",
  24. "type": "number"
  25. }
  26. }
  27. }