text.json 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "ty": {
  6. "title": "Type",
  7. "description": "Type of layer: Text.",
  8. "type": "number",
  9. "value": 5
  10. },
  11. "ks": {
  12. "title": "Transform",
  13. "description": "Transform properties",
  14. "$ref": "#/helpers/transform",
  15. "type": "object"
  16. },
  17. "ao": {
  18. "title": "Auto-Orient",
  19. "description": "Auto-Orient along path AE property.",
  20. "$ref": "#/helpers/boolean",
  21. "type": "number",
  22. "default": 0
  23. },
  24. "bm": {
  25. "title": "Blend Mode",
  26. "description": "Blend Mode",
  27. "$ref": "#/helpers/blendMode",
  28. "type": "number",
  29. "default": 0
  30. },
  31. "ddd": {
  32. "title": "3d Layer",
  33. "description": "3d layer flag",
  34. "$ref": "#/helpers/boolean",
  35. "type": "number",
  36. "default": 0
  37. },
  38. "ind": {
  39. "title": "Index",
  40. "description": "Layer index in AE. Used for parenting and expressions.",
  41. "type": "number"
  42. },
  43. "cl": {
  44. "title": "Class",
  45. "description": "Parsed layer name used as html class on SVG/HTML renderer",
  46. "type": "string"
  47. },
  48. "ln": {
  49. "title": "layer HTML ID",
  50. "description": "Parsed layer name used as html id on SVG/HTML renderer",
  51. "type": "string"
  52. },
  53. "ip": {
  54. "title": "In Point",
  55. "description": "In Point of layer. Sets the initial frame of the layer.",
  56. "type": "number"
  57. },
  58. "op": {
  59. "title": "Out Point",
  60. "description": "Out Point of layer. Sets the final frame of the layer.",
  61. "type": "number"
  62. },
  63. "st": {
  64. "title": "Start Time",
  65. "description": "Start Time of layer. Sets the start time of the layer.",
  66. "type": "number"
  67. },
  68. "nm": {
  69. "title": "Name",
  70. "description": "After Effects Layer Name. Used for expressions.",
  71. "type": "number"
  72. },
  73. "hasMask": {
  74. "title": "Has Masks",
  75. "description": "Boolean when layer has a mask. Will be deprecated in favor of checking masksProperties.",
  76. "type": "number"
  77. },
  78. "masksProperties": {
  79. "title": "Masks Properties",
  80. "description": "List of Masks",
  81. "items": {
  82. "$ref": "#/helpers/mask",
  83. "type": "object"
  84. },
  85. "type": "array"
  86. },
  87. "ef": {
  88. "title": "Effects",
  89. "description": "Auto-Orient along path AE property.",
  90. "$ref": "#/helpers/boolean",
  91. "type": "number"
  92. },
  93. "sr": {
  94. "title": "Stretch",
  95. "description": "Layer Time Stretching",
  96. "type": "number",
  97. "default": 1
  98. },
  99. "parent": {
  100. "title": "Parent",
  101. "description": "Layer Parent. Uses ind of parent.",
  102. "type": "number"
  103. },
  104. "t": {
  105. "title": "Text Data",
  106. "description": "Text Data",
  107. "properties": [
  108. {
  109. "title": "Animators",
  110. "description": "Text animators",
  111. "items": {
  112. "properties": [
  113. {
  114. "title": "Animated Properties",
  115. "description": "Text animator animated properties",
  116. "properties": [
  117. {
  118. "title": "Position",
  119. "description": "Text animator Position",
  120. "oneOf": [
  121. {
  122. "$ref": "#/properties/multiDimensional"
  123. },
  124. {
  125. "$ref": "#/properties/multiDimensionalKeyframed"
  126. }
  127. ],
  128. "type": "object"
  129. },
  130. {
  131. "title": "Anchor Point",
  132. "description": "Text animator Anchor Point",
  133. "oneOf": [
  134. {
  135. "$ref": "#/properties/multiDimensional"
  136. },
  137. {
  138. "$ref": "#/properties/multiDimensionalKeyframed"
  139. }
  140. ],
  141. "type": "object"
  142. },
  143. {
  144. "title": "Scale",
  145. "description": "Text animator Scale",
  146. "oneOf": [
  147. {
  148. "$ref": "#/properties/multiDimensional"
  149. },
  150. {
  151. "$ref": "#/properties/multiDimensionalKeyframed"
  152. }
  153. ],
  154. "type": "object"
  155. },
  156. {
  157. "title": "Skew",
  158. "description": "Text animator Skew",
  159. "oneOf": [
  160. {
  161. "$ref": "#/properties/value"
  162. },
  163. {
  164. "$ref": "#/properties/valueKeyframed"
  165. }
  166. ],
  167. "type": "object"
  168. },
  169. {
  170. "title": "Skew Axis",
  171. "description": "Text animator Skew Axis",
  172. "oneOf": [
  173. {
  174. "$ref": "#/properties/value"
  175. },
  176. {
  177. "$ref": "#/properties/valueKeyframed"
  178. }
  179. ],
  180. "type": "object"
  181. },
  182. {
  183. "title": "Rotation",
  184. "description": "Text animator Rotation",
  185. "oneOf": [
  186. {
  187. "$ref": "#/properties/value"
  188. },
  189. {
  190. "$ref": "#/properties/valueKeyframed"
  191. }
  192. ],
  193. "type": "object"
  194. },
  195. {
  196. "title": "Opacity",
  197. "description": "Text animator Opacity",
  198. "oneOf": [
  199. {
  200. "$ref": "#/properties/value"
  201. },
  202. {
  203. "$ref": "#/properties/valueKeyframed"
  204. }
  205. ],
  206. "type": "object"
  207. },
  208. {
  209. "title": "Stroke Width",
  210. "description": "Text animator Stroke Width",
  211. "oneOf": [
  212. {
  213. "$ref": "#/properties/value"
  214. },
  215. {
  216. "$ref": "#/properties/valueKeyframed"
  217. }
  218. ],
  219. "type": "object"
  220. },
  221. {
  222. "title": "Stroke Color",
  223. "description": "Text animator Stroke Color",
  224. "oneOf": [
  225. {
  226. "$ref": "#/properties/multiDimensional"
  227. },
  228. {
  229. "$ref": "#/properties/multiDimensionalKeyframed"
  230. }
  231. ],
  232. "type": "object"
  233. },
  234. {
  235. "title": "Fill Color",
  236. "description": "Text animator Fill Color",
  237. "oneOf": [
  238. {
  239. "$ref": "#/properties/multiDimensional"
  240. },
  241. {
  242. "$ref": "#/properties/multiDimensionalKeyframed"
  243. }
  244. ],
  245. "type": "object"
  246. },
  247. {
  248. "title": "Fill Hue",
  249. "description": "Text animator Fill Hue",
  250. "oneOf": [
  251. {
  252. "$ref": "#/properties/value"
  253. },
  254. {
  255. "$ref": "#/properties/valueKeyframed"
  256. }
  257. ],
  258. "type": "object"
  259. },
  260. {
  261. "title": "Fill Saturation",
  262. "description": "Text animator Fill Saturation",
  263. "oneOf": [
  264. {
  265. "$ref": "#/properties/value"
  266. },
  267. {
  268. "$ref": "#/properties/valueKeyframed"
  269. }
  270. ],
  271. "type": "object"
  272. },
  273. {
  274. "title": "Fill Brightness",
  275. "description": "Text animator Fill Brightness",
  276. "oneOf": [
  277. {
  278. "$ref": "#/properties/value"
  279. },
  280. {
  281. "$ref": "#/properties/valueKeyframed"
  282. }
  283. ],
  284. "type": "object"
  285. },
  286. {
  287. "title": "Tracking",
  288. "description": "Text animator Tracking",
  289. "oneOf": [
  290. {
  291. "$ref": "#/properties/value"
  292. },
  293. {
  294. "$ref": "#/properties/valueKeyframed"
  295. }
  296. ],
  297. "type": "object"
  298. }
  299. ],
  300. "type": "object"
  301. },
  302. {
  303. "title": "Range Selecton",
  304. "description": "Animators Range Selecton",
  305. "properties": [
  306. {
  307. "title": "Type",
  308. "description": "Selector Type. Expressible, or Normal.",
  309. "type": "number"
  310. },
  311. {
  312. "title": "Max Amount",
  313. "description": "Selector Max Amount",
  314. "oneOf": [
  315. {
  316. "$ref": "#/properties/value"
  317. },
  318. {
  319. "$ref": "#/properties/valueKeyframed"
  320. }
  321. ],
  322. "type": "number"
  323. },
  324. {
  325. "title": "Min Ease",
  326. "description": "Levels Min Ease",
  327. "oneOf": [
  328. {
  329. "$ref": "#/properties/value"
  330. },
  331. {
  332. "$ref": "#/properties/valueKeyframed"
  333. }
  334. ],
  335. "type": "number"
  336. },
  337. {
  338. "title": "Max Ease",
  339. "description": "Levels Max Ease",
  340. "oneOf": [
  341. {
  342. "$ref": "#/properties/value"
  343. },
  344. {
  345. "$ref": "#/properties/valueKeyframed"
  346. }
  347. ],
  348. "type": "number"
  349. },
  350. {
  351. "title": "Randomize",
  352. "description": "Selector Randomize Order",
  353. "$ref": "#/helpers/boolean",
  354. "type": "number"
  355. },
  356. {
  357. "title": "Shape",
  358. "description": "Selector Shape",
  359. "$ref": "#/helpers/textShape",
  360. "type": "number"
  361. },
  362. {
  363. "title": "Based On",
  364. "description": "Selector Based On",
  365. "$ref": "#/helpers/textBased",
  366. "type": "number"
  367. },
  368. {
  369. "title": "Range Units",
  370. "description": "Selector Range Units. Percentage or Index.",
  371. "type": "number"
  372. },
  373. {
  374. "title": "Start",
  375. "description": "Selector Start",
  376. "oneOf": [
  377. {
  378. "$ref": "#/properties/value"
  379. },
  380. {
  381. "$ref": "#/properties/valueKeyframed"
  382. }
  383. ],
  384. "type": "number"
  385. },
  386. {
  387. "title": "End",
  388. "description": "Selector End",
  389. "oneOf": [
  390. {
  391. "$ref": "#/properties/value"
  392. },
  393. {
  394. "$ref": "#/properties/valueKeyframed"
  395. }
  396. ],
  397. "type": "number"
  398. },
  399. {
  400. "title": "Offset",
  401. "description": "Selector Offset",
  402. "oneOf": [
  403. {
  404. "$ref": "#/properties/value"
  405. },
  406. {
  407. "$ref": "#/properties/valueKeyframed"
  408. }
  409. ],
  410. "type": "number"
  411. }
  412. ],
  413. "type": "object"
  414. }
  415. ],
  416. "type": "object"
  417. },
  418. "type": "array"
  419. },
  420. {
  421. "title": "More Options",
  422. "description": "Text More Options",
  423. "properties": [
  424. {
  425. "title": "Anchor Point Grouping",
  426. "description": "Text Anchor Point Grouping",
  427. "$ref": "#/helpers/textGrouping",
  428. "type": "number"
  429. },
  430. {
  431. "title": "Grouping Alignment",
  432. "description": "Text Grouping Alignment",
  433. "oneOf": [
  434. {
  435. "$ref": "#/properties/multiDimensional"
  436. },
  437. {
  438. "$ref": "#/properties/multiDimensionalKeyframed"
  439. }
  440. ],
  441. "type": "number"
  442. }
  443. ],
  444. "type": "object"
  445. },
  446. {
  447. "title": "Text Path",
  448. "description": "Text Path",
  449. "type": "number"
  450. },
  451. {
  452. "title": "Document",
  453. "description": "Text Document Data",
  454. "properties": [
  455. {
  456. "title": "Keyframes",
  457. "description": "Text Document Data Keyframes",
  458. "items": {
  459. "oneOf": [
  460. {
  461. "properties": [
  462. {
  463. "title": "Time",
  464. "description": "Keyframe Time",
  465. "type": "number"
  466. },
  467. {
  468. "title": "Text Properties",
  469. "description": "Text Properties",
  470. "type": "object",
  471. "properties": [
  472. {
  473. "title": "Font",
  474. "description": "Text Font",
  475. "type": "string"
  476. },
  477. {
  478. "title": "Font Color",
  479. "description": "Text Font Color",
  480. "type": "array"
  481. },
  482. {
  483. "title": "Justificaiton",
  484. "description": "Text Justification",
  485. "type": "string"
  486. },
  487. {
  488. "title": "Line Height",
  489. "description": "Text Line Height",
  490. "type": "number"
  491. },
  492. {
  493. "title": "Size",
  494. "description": "Text Font Size",
  495. "type": "number"
  496. },
  497. {
  498. "title": "Text",
  499. "description": "Text String Value",
  500. "type": "string"
  501. },
  502. {
  503. "title": "Tracking",
  504. "description": "Text Tracking",
  505. "type": "number"
  506. }
  507. ]
  508. }
  509. ]
  510. }
  511. ],
  512. "type": "object"
  513. },
  514. "type": "array"
  515. }
  516. ],
  517. "type": "object"
  518. }
  519. ],
  520. "type": "object"
  521. }
  522. }
  523. }