precomp.json 768 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "id": {
  6. "title": "ID",
  7. "description": "Precomp ID",
  8. "type": "string"
  9. },
  10. "layers": {
  11. "title": "Layers",
  12. "description": "List of Precomp Layers",
  13. "items": {
  14. "oneOf": [
  15. {
  16. "$ref": "#/layers/shape"
  17. },
  18. {
  19. "$ref": "#/layers/solid"
  20. },
  21. {
  22. "$ref": "#/layers/preComp"
  23. },
  24. {
  25. "$ref": "#/layers/image"
  26. },
  27. {
  28. "$ref": "#/layers/null"
  29. },
  30. {
  31. "$ref": "#/layers/text"
  32. }
  33. ],
  34. "type": "object"
  35. },
  36. "type": "array"
  37. }
  38. }
  39. }