1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
| {
| "$schema": "http://json-schema.org/draft-04/schema#",
| "type": "object",
| "properties": {
| "ty": {
| "title": "Type",
| "description": "Type of layer: Shape.",
| "type": "number",
| "const": 4
| },
| "ks": {
| "title": "Transform",
| "description": "Transform properties",
| "$ref": "#/helpers/transform",
| "type": "object"
| },
| "ao": {
| "title": "Auto-Orient",
| "description": "Auto-Orient along path AE property.",
| "$ref": "#/helpers/boolean",
| "type": "number",
| "default": 0
| },
| "bm": {
| "title": "Blend Mode",
| "description": "Blend Mode",
| "$ref": "#/helpers/blendMode",
| "type": "number",
| "default": 0
| },
| "ddd": {
| "title": "3d Layer",
| "description": "3d layer flag",
| "$ref": "#/helpers/boolean",
| "type": "number",
| "default": 0
| },
| "ind": {
| "title": "Index",
| "description": "Layer index in AE. Used for parenting and expressions.",
| "type": "number"
| },
| "cl": {
| "title": "Class",
| "description": "Parsed layer name used as html class on SVG/HTML renderer",
| "type": "string"
| },
| "ln": {
| "title": "layer HTML ID",
| "description": "Parsed layer name used as html id on SVG/HTML renderer",
| "type": "string"
| },
| "ip": {
| "title": "In Point",
| "description": "In Point of layer. Sets the initial frame of the layer.",
| "type": "number"
| },
| "op": {
| "title": "Out Point",
| "description": "Out Point of layer. Sets the final frame of the layer.",
| "type": "number"
| },
| "st": {
| "title": "Start Time",
| "description": "Start Time of layer. Sets the start time of the layer.",
| "type": "number"
| },
| "nm": {
| "title": "Name",
| "description": "After Effects Layer Name. Used for expressions.",
| "type": "number"
| },
| "hasMask": {
| "title": "Has Masks",
| "description": "Boolean when layer has a mask. Will be deprecated in favor of checking masksProperties.",
| "type": "number"
| },
| "masksProperties": {
| "title": "Masks Properties",
| "description": "List of Masks",
| "items": {
| "$ref": "#/helpers/mask",
| "type": "object"
| },
| "type": "array"
| },
| "ef": {
| "title": "Effects",
| "description": "List of Effects",
| "items": {
| "$ref": "#/effects/index",
| "type": "object"
| },
| "type": "array"
| },
| "sr": {
| "title": "Stretch",
| "description": "Layer Time Stretching",
| "type": "number",
| "default": 1
| },
| "parent": {
| "title": "Parent",
| "description": "Layer Parent. Uses ind of parent.",
| "type": "number"
| },
| "it": {
| "title": "Items",
| "description": "Shape list of items",
| "items": {
| "oneOf": [
| {
| "$ref": "#/shapes/shape"
| },
| {
| "$ref": "#/shapes/rect"
| },
| {
| "$ref": "#/shapes/ellipse"
| },
| {
| "$ref": "#/shapes/star"
| },
| {
| "$ref": "#/shapes/fill"
| },
| {
| "$ref": "#/shapes/gFill"
| },
| {
| "$ref": "#/shapes/gStroke"
| },
| {
| "$ref": "#/shapes/stroke"
| },
| {
| "$ref": "#/shapes/merge"
| },
| {
| "$ref": "#/shapes/trim"
| },
| {
| "$ref": "#/shapes/group"
| },
| {
| "$ref": "#/shapes/round"
| },
| {
| "$ref": "#/shapes/repeater"
| }
| ],
| "type": "object"
| },
| "type": "array"
| }
| }
| }
|
|