保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "ip": {
      "title": "In Point",
      "description": "In Point of the Time Ruler. Sets the initial Frame of the animation.",
      "type": "number"
    },
    "op": {
      "title": "Out Point",
      "description": "Out Point of the Time Ruler. Sets the final Frame of the animation",
      "type": "number"
    },
    "fr": {
      "title": "Frame Rate",
      "description": "Frame Rate",
      "type": "number"
    },
    "w": {
      "title": "Width",
      "description": "Composition Width",
      "type": "number"
    },
    "ddd": {
      "title": "3-D",
      "description": "Composition has 3-D layers",
      "type": "number",
      "$ref": "#/helpers/boolean",
      "default": 0
    },
    "h": {
      "title": "Height",
      "description": "Composition Height",
      "type": "number"
    },
    "v": {
      "title": "Version",
      "description": "Bodymovin Version",
      "type": "string"
    },
    "nm": {
      "title": "Name",
      "description": "Composition name",
      "type": "string"
    },
    "layers": {
      "title": "Layers",
      "description": "List of Composition Layers",
      "items": {
        "oneOf": [
          {
            "$ref": "#/layers/shape"
          },
          {
            "$ref": "#/layers/solid"
          },
          {
            "$ref": "#/layers/preComp"
          },
          {
            "$ref": "#/layers/image"
          },
          {
            "$ref": "#/layers/null"
          },
          {
            "$ref": "#/layers/text"
          }
        ],
        "type": "object"
      },
      "type": "array"
    },
    "assets": {
      "title": "Assets",
      "description": "source items that can be used in multiple places. Comps and Images for now.",
      "items": {
        "oneOf": [
          {
            "$ref": "#/sources/image"
          },
          {
            "$ref": "#/sources/precomp"
          }
        ],
        "type": "object"
      },
      "type": "array"
    },
    "chars": {
      "title": "Chars",
      "description": "source chars for text layers",
      "items": {
        "$ref": "#/sources/chars",
        "type": "object"
      },
      "type": "array"
    }
  }
}