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
| {
| "$schema": "http://json-schema.org/draft-04/schema#",
| "type": "object",
| "properties": {
| "mn": {
| "title": "Match Name",
| "description": "After Effect's Match Name. Used for expressions.",
| "type": "string"
| },
| "nm": {
| "title": "Name",
| "description": "After Effect's Name. Used for expressions.",
| "type": "string"
| },
| "ty": {
| "title": "Type",
| "description": "Shape content type.",
| "type": "string",
| "const": "gr"
| },
| "np": {
| "title": "Number of Properties",
| "description": "Group number of properties. Used for expressions.",
| "type": "number"
| },
| "it": {
| "title": "Items",
| "description": "Group list of items",
| "items": {
| "oneOf": [
| {
| "$ref": "#/shapes/shape",
| "value": "sh"
| },
| {
| "$ref": "#/shapes/rect",
| "value": "rc"
| },
| {
| "$ref": "#/shapes/ellipse",
| "value": "el"
| },
| {
| "$ref": "#/shapes/star",
| "value": "sr"
| },
| {
| "$ref": "#/shapes/fill",
| "value": "fl"
| },
| {
| "$ref": "#/shapes/gFill",
| "value": "gf"
| },
| {
| "$ref": "#/shapes/gStroke",
| "value": "gs"
| },
| {
| "$ref": "#/shapes/stroke",
| "value": "st"
| },
| {
| "$ref": "#/shapes/merge",
| "value": "mm"
| },
| {
| "$ref": "#/shapes/trim",
| "value": "tm"
| },
| {
| "$ref": "#/shapes/group",
| "value": "gr"
| },
| {
| "$ref": "#/shapes/round",
| "value": "rd"
| },
| {
| "$ref": "#/shapes/transform",
| "value": "tr"
| }
| ],
| "type": "object"
| },
| "type": "array"
| }
| }
| }
|
|