repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
LottieFiles/lottie-docs | 8362bdd4ad1eaef21e98f05d78b011c64ef57fbb | 2021-10-22T09:59:40 | docs/schema/effects/gaussian-blur-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ef": {
"prefixItems": [
{
"$ref": "#/$defs/effects/effect-value-slider",
"title": "sigma"
},
{
"$ref": "#/$defs/effects/effect-value-slider",
"title": "dimensions"
},
{
"$ref": "#/$defs/effects/effect-value-checkbox",
"title": "wrap"
}
],
"title": "Effect values",
"type": "array"
},
"ty": {
"const": 29,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Gaussian blur",
"title": "Gaussian Blur Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 26e06cd7aa758ae68e95cc4b0b97c64571411b86 | 2022-11-01T09:29:58 | docs/schema/constants/stroke-dash-type.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Type of a dash item in a stroked line",
"oneOf": [
{
"const": "d",
"title": "Dash"
},
{
"const": "g",
"title": "Gap"
},
{
"const": "o",
"title": "Offset"
}
],
"title": "Stroke Dash Type",
"type": "string"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 31cca507967b77cd61a55b0544536384c8cbd01f | 2021-11-24T09:39:53 | docs/schema/helpers/transform.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/position",
"description": "Anchor point: a position (relative to its parent) around which transformations are applied (ie: center for rotation / scale)",
"title": "Anchor Point"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"or": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Orientation"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "Scale factor, `[100, 100]` for no scaling",
"title": "Scale"
},
"sa": {
"$ref": "#/$defs/animated-properties/value",
"description": "Direction along which skew is applied, in degrees (`0` skews along the X axis, `90` along the Y axis)",
"title": "Skew Axis"
},
"sk": {
"$ref": "#/$defs/animated-properties/value",
"description": "Skew amount as an angle in degrees",
"title": "Skew"
}
}
},
{
"anyOf": [
{
"oneOf": [
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/position",
"description": "Position / Translation",
"title": "Position"
}
}
},
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/split-vector",
"description": "Position / Translation with split components",
"title": "Position"
}
}
}
]
},
{
"oneOf": [
{
"properties": {
"r": {
"$ref": "#/$defs/animated-properties/value",
"description": "Rotation in degrees, clockwise",
"title": "Rotation"
}
}
},
{
"properties": {
"rx": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split rotation component",
"title": "X Rotation"
},
"ry": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split rotation component",
"title": "Y Rotation"
},
"rz": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split rotation component, equivalent to `r` when not split",
"title": "Z Rotation"
}
}
}
]
}
]
}
],
"description": "Layer transform",
"title": "Transform",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 64d316388175db86204fec32bb055adc06e51439 | 2022-10-17T16:55:40 | docs/schema/helpers/mask.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"inv": {
"caniuse": "mask-inverted",
"default": false,
"title": "Inverted",
"type": "boolean"
},
"mode": {
"$ref": "#/$defs/constants/mask-mode",
"caniuse": "mask-modes",
"default": "i",
"title": "Mode"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"caniuse": "mask-opacity",
"title": "Opacity"
},
"pt": {
"$ref": "#/$defs/animated-properties/shape-property",
"title": "Shape"
},
"x": {
"$ref": "#/$defs/animated-properties/value",
"caniuse": "mask-expansion",
"title": "Expand"
}
},
"required": [],
"type": "object"
}
],
"caniuse": "mask",
"description": "Bezier shape used to mask/clip a layer",
"title": "Mask",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/effects/drop-shadow-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ef": {
"prefixItems": [
{
"$ref": "#/$defs/effect-values/color",
"title": "color"
},
{
"$ref": "#/$defs/effect-values/slider",
"description": "Opacity between 0 and 255",
"title": "opacity"
},
{
"$ref": "#/$defs/effect-values/angle",
"title": "angle"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "distance"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "blur"
}
],
"title": "Effect values",
"type": "array"
},
"ty": {
"const": 25,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"caniuse": "effect-drop-shadow",
"description": "Adds a shadow to the layer",
"title": "Drop Shadow Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/shapes/ellipse.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape"
},
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/position",
"title": "Position"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Size"
},
"ty": {
"const": "el",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"s",
"p"
],
"type": "object"
}
],
"caniuse": "shape-ellipse",
"description": "Ellipse shape",
"title": "Ellipse",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/animated-properties/keyframe-bezier-handle.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Bezier handle for keyframe interpolation",
"properties": {
"x": {
"description": "Time component:\n0 means start time of the keyframe,\n1 means time of the next keyframe.",
"oneOf": [
{
"items": {
"default": 0,
"maximum": 1,
"minimum": 0,
"type": "number"
},
"minItems": 1,
"type": "array"
},
{
"default": 0,
"maximum": 1,
"minimum": 0,
"type": "number"
}
],
"title": "X"
},
"y": {
"description": "Value interpolation component:\n0 means start value of the keyframe,\n1 means value at the next keyframe.",
"oneOf": [
{
"items": {
"default": 0,
"maximum": 1,
"minimum": 0,
"type": "number"
},
"minItems": 1,
"type": "array"
},
{
"default": 0,
"maximum": 1,
"minimum": 0,
"type": "number"
}
],
"title": "Y"
}
},
"required": [
"x",
"y"
],
"title": "Keyframe Bezier Handle",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d301bfaaea449b0328d9a4ab58b3a1705b1787dc | 2021-10-23T12:05:07 | docs/schema/shapes/ellipse.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape"
},
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Position"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Size"
},
"ty": {
"const": "el",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Ellipse shape",
"title": "Ellipse",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 11d5eafbfc6a08dd41b5f5b465323ab75eca4f81 | 2022-02-17T13:50:48 | docs/schema/animated-properties/shape-property.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the property is animated",
"title": "Animated"
},
"ix": {
"title": "Property Index",
"type": "integer"
},
"x": {
"title": "Expression",
"type": "string"
}
}
},
{
"else": {
"properties": {
"k": {
"$ref": "#/$defs/helpers/bezier",
"title": "Static Value"
}
}
},
"if": {
"properties": {
"a": {
"const": 1
}
}
},
"then": {
"properties": {
"k": {
"description": "Array of keyframes",
"items": {
"$ref": "#/$defs/animated-properties/shape-keyframe"
},
"title": "Animated Value",
"type": "array"
}
}
}
}
],
"description": "An animatable property that holds a Bezier",
"required": [
"k"
],
"title": "Shape Property",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 67513d4c25313e68bd4844793786e196ad235825 | 2021-10-24T15:38:44 | docs/schema/layers/layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"title": "Auto Orient"
},
"bm": {
"$ref": "#/$defs/constants/blend-mode",
"default": 0,
"title": "Blend Mode"
},
"cl": {
"description": "CSS class used by the SVG renderer",
"title": "Class",
"type": "string"
},
"ddd": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the layer is threedimensional",
"title": "Threedimensional"
},
"ef": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/change-to-color-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"hd": {
"description": "Whether the layer is hidden",
"title": "Hidden",
"type": "boolean"
},
"ind": {
"title": "Index",
"type": "integer"
},
"ip": {
"description": "Frame when the layers becomes visible",
"title": "In Point",
"type": "number"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"description": "Layer transform",
"title": "Transform"
},
"ln": {
"description": "`id` attribute used by the SVG renderer",
"title": "Layer XML ID",
"type": "string"
},
"masksProperties": {
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"$comment": "Not actually supported by lottie",
"description": "Whether motion blur is enable for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"op": {
"description": "Frame when the layers becomes invisible",
"title": "Out Point",
"type": "number"
},
"parent": {
"description": "Must be the `ind` property of another layer",
"title": "Parent Index",
"type": "integer"
},
"sr": {
"default": 1,
"title": "Time Stretch",
"type": "number"
},
"st": {
"default": 0,
"title": "Start Time",
"type": "number"
},
"td": {
"title": "Matte Target",
"type": "integer"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"title": "Matte Mode"
},
"ty": {
"description": "Layer Type",
"oneOf": [
{
"const": 0,
"title": "Precomposition layer"
},
{
"const": 1,
"title": "Solid color layer"
},
{
"const": 2,
"title": "Image layer"
},
{
"const": 3,
"title": "Null layer"
},
{
"const": 4,
"title": "Shape layer"
},
{
"const": 5,
"title": "Text layer"
},
{
"const": 6,
"title": "Audio layer"
},
{
"const": 7,
"title": "Video placeholder"
},
{
"const": 8,
"title": "Image sequence"
},
{
"const": 9,
"title": "Video layer"
},
{
"const": 10,
"title": "Image placeholder"
},
{
"const": 11,
"title": "Guide layer"
},
{
"const": 12,
"title": "Adjustment layer"
},
{
"const": 13,
"title": "Camera"
},
{
"const": 14,
"title": "Light layer"
}
],
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"st",
"ip",
"op",
"ks"
],
"type": "object"
}
],
"description": "",
"title": "Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/shapes/pucker-bloat.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/shapes/shape-element"
},
{
"properties": {
"a": {
"$ref": "#/properties/value",
"title": "Amount"
},
"ty": {
"const": "pb",
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Interpolates the shape with its center point and bezier tangents with the opposite direction",
"title": "Pucker Bloat",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/shapes/repeater-transform.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/helpers/transform"
},
{
"properties": {
"eo": {
"$ref": "#/properties/value",
"title": "End Opacity"
},
"so": {
"$ref": "#/properties/value",
"title": "Start Opacity"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Repeater Transform",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | e23b50cc9d5b549f7e19bdead2b224043599567b | 2022-04-14T08:38:29 | docs/schema/text/font.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"ascent": {
"description": "Text will be moved down based on this value",
"title": "Ascent",
"type": "number"
},
"fClass": {
"description": "CSS Class applied to text objects using this font",
"title": "CSS Class",
"type": "string"
},
"fFamily": {
"default": "sans",
"title": "Font Family",
"type": "string"
},
"fName": {
"default": "sans-Regular",
"description": "Name used by text documents to reference this font, usually it's `fFamily` followed by `fStyle`",
"title": "Name",
"type": "string"
},
"fPath": {
"title": "Path",
"type": "string"
},
"fStyle": {
"default": "Regular",
"examples": [
"Regular",
"Bold",
"Bold Italic"
],
"title": "Font Style",
"type": "string"
},
"fWeight": {
"title": "Weight",
"type": "string"
},
"origin": {
"$ref": "#/$defs/constants/font-path-origin",
"title": "Origin"
}
},
"required": [
"fFamily",
"fName",
"fStyle"
],
"type": "object"
}
],
"description": "Describes how a font with given settings should be loaded",
"title": "Font",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d4d7b11657e01d91f05f85207c991f040565d18b | 2022-05-20T09:36:32 | docs/schema/assets/sound.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/assets/file-asset"
}
],
"description": "External sound",
"title": "Sound",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d301bfaaea449b0328d9a4ab58b3a1705b1787dc | 2021-10-23T12:05:07 | docs/schema/constants/mask-mode.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "How masks interact with each other. See https://helpx.adobe.com/after-effects/using/alpha-channels-masks-mattes.html",
"oneOf": [
{
"const": "n",
"title": "No"
},
{
"const": "a",
"title": "Add"
},
{
"const": "s",
"title": "Subtract"
},
{
"const": "i",
"title": "Intersect"
},
{
"const": "l",
"title": "Lighten"
},
{
"const": "d",
"title": "Darken"
},
{
"const": "f",
"title": "Difference"
}
],
"title": "MaskMode",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/styles/drop-shadow-style.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/styles/layer-style"
},
{
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/value",
"description": "Local light angle",
"title": "Angle"
},
"bm": {
"$ref": "#/$defs/animated-properties/value",
"title": "Blend Mode"
},
"c": {
"$ref": "#/$defs/animated-properties/color-value",
"title": "Color"
},
"ch": {
"$ref": "#/$defs/animated-properties/value",
"title": "Choke Spread"
},
"d": {
"$ref": "#/$defs/animated-properties/value",
"title": "Distance"
},
"lc": {
"$ref": "#/$defs/animated-properties/value",
"description": "Layer knowck out drop shadow",
"title": "Layer Conceal"
},
"no": {
"$ref": "#/$defs/animated-properties/value",
"title": "Noise"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"s": {
"$ref": "#/$defs/animated-properties/value",
"description": "Blur size",
"title": "Size"
},
"ty": {
"const": 1,
"description": "Layer Type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"caniuse": "style-drop-shadow",
"title": "Drop Shadow",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/layers/shape-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"shapes": {
"items": {
"$ref": "#/$defs/shapes/concrete-shape"
},
"title": "Shapes",
"type": "array"
},
"ty": {
"const": 4,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Layer containing ShapeElement objects",
"title": "Shape Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 4feb7a269d2302c9a68fdb256ee8ac32a253d554 | 2021-12-01T11:13:15 | docs/schema/layers/precomposition-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/visual-layer"
},
{
"properties": {
"h": {
"default": 512,
"title": "Height",
"type": "integer"
},
"refId": {
"default": "",
"description": "ID of the precomp as specified in the assets",
"title": "Reference Id",
"type": "string"
},
"tm": {
"$ref": "#/$defs/animated-properties/value",
"title": "Time Remapping"
},
"ty": {
"const": 0,
"description": "Layer type",
"title": "Type",
"type": "integer"
},
"w": {
"default": 512,
"title": "Width",
"type": "integer"
}
},
"required": [
"ty",
"refId"
],
"type": "object"
}
],
"description": "",
"title": "Precomposition Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 3e662d2d9e1da1b785eef7aa280b0d75859e2d2f | 2021-10-26T21:03:25 | docs/schema/layers/layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"title": "Auto Orient"
},
"bm": {
"$ref": "#/$defs/constants/blend-mode",
"default": 0,
"title": "Blend Mode"
},
"cl": {
"description": "CSS class used by the SVG renderer",
"title": "Class",
"type": "string"
},
"ddd": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the layer is threedimensional",
"title": "Threedimensional"
},
"ef": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/change-to-color-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
},
{
"$ref": "#/$defs/effects/radial-wipe-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"hd": {
"description": "Whether the layer is hidden",
"title": "Hidden",
"type": "boolean"
},
"ind": {
"title": "Index",
"type": "integer"
},
"ip": {
"description": "Frame when the layers becomes visible",
"title": "In Point",
"type": "number"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"description": "Layer transform",
"title": "Transform"
},
"ln": {
"description": "`id` attribute used by the SVG renderer",
"title": "Layer XML ID",
"type": "string"
},
"masksProperties": {
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"description": "Whether motion blur is enable for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"op": {
"description": "Frame when the layers becomes invisible",
"title": "Out Point",
"type": "number"
},
"parent": {
"description": "Must be the `ind` property of another layer",
"title": "Parent Index",
"type": "integer"
},
"sr": {
"default": 1,
"title": "Time Stretch",
"type": "number"
},
"st": {
"default": 0,
"title": "Start Time",
"type": "number"
},
"td": {
"title": "Matte Target",
"type": "integer"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"title": "Matte Mode"
},
"ty": {
"description": "Layer Type",
"oneOf": [
{
"const": 0,
"title": "Precomposition layer"
},
{
"const": 1,
"title": "Solid color layer"
},
{
"const": 2,
"title": "Image layer"
},
{
"const": 3,
"title": "Null layer"
},
{
"const": 4,
"title": "Shape layer"
},
{
"const": 5,
"title": "Text layer"
},
{
"const": 6,
"title": "Audio layer"
},
{
"const": 7,
"title": "Video placeholder"
},
{
"const": 8,
"title": "Image sequence"
},
{
"const": 9,
"title": "Video layer"
},
{
"const": 10,
"title": "Image placeholder"
},
{
"const": 11,
"title": "Guide layer"
},
{
"const": 12,
"title": "Adjustment layer"
},
{
"const": 13,
"title": "Camera"
},
{
"const": 14,
"title": "Light layer"
}
],
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"st",
"ip",
"op",
"ks"
],
"type": "object"
}
],
"description": "",
"title": "Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/layers/text-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/layers/layer"
},
{
"properties": {
"t": {
"$ref": "#/text/text-animator-data",
"title": "Data"
},
"ty": {
"const": 5,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "",
"title": "Text Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/text/text-data.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"k": {
"items": {
"$ref": "#/$defs/text/text-data-keyframe"
},
"title": "Keyframes",
"type": "array"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Text Data",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 8362bdd4ad1eaef21e98f05d78b011c64ef57fbb | 2021-10-22T09:59:40 | docs/schema/text/font.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"ascent": {
"title": "Ascent",
"type": "number"
},
"fClass": {
"description": "CSS Class applied to text objects using this font",
"title": "CSS Class",
"type": "string"
},
"fFamily": {
"default": "sans",
"title": "Font Family",
"type": "string"
},
"fName": {
"default": "sans-Regular",
"description": "Name used by text documents to reference this font, usually it's `fFamily` followed by `fStyle`",
"title": "Name",
"type": "string"
},
"fPath": {
"title": "Path",
"type": "string"
},
"fStyle": {
"default": "Regular",
"examples": [
"Regular",
"Bold",
"Bold Italic"
],
"title": "Font Style",
"type": "string"
},
"fWeight": {
"title": "Weight",
"type": "string"
},
"origin": {
"$ref": "#/$defs/constants/font-path-origin",
"title": "Origin"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Font",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 1f7d9f0f0af46a3399327607842f54ed4ac369cc | 2022-08-15T13:17:24 | docs/schema/animated-properties/position-keyframe.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/animated-properties/keyframe"
},
{
"properties": {
"ti": {
"description": "Tangent for values (eg: moving position around a curved path)",
"items": {
"type": "number"
},
"title": "Value In Tangent",
"type": "array"
},
"to": {
"description": "Tangent for values (eg: moving position around a curved path)",
"items": {
"type": "number"
},
"title": "Value Out Tangent",
"type": "array"
}
}
}
],
"title": "Position Keyframe",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/animation/animation.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/composition/composition"
},
{
"$ref": "#/helpers/visual-object"
},
{
"properties": {
"assets": {
"item": {
"$ref": "#/assets/asset"
},
"title": "Assets",
"type": "array"
},
"chars": {
"item": {
"$ref": "#/assets/chars"
},
"title": "Chars",
"type": "array"
},
"ddd": {
"$ref": "#/types/int-boolean",
"default": 0,
"title": "Threedimensional"
},
"fonts": {
"$ref": "#/text/font-list",
"title": "Fonts"
},
"fr": {
"default": 60,
"title": "Frame Rate",
"type": "number"
},
"h": {
"default": 512,
"title": "Height",
"type": "integer"
},
"ip": {
"default": 0,
"title": "In Point",
"type": "number"
},
"mn": {
"title": "Match Name",
"type": "string"
},
"op": {
"default": 60,
"title": "Out Point",
"type": "number"
},
"v": {
"default": "5.5.2",
"title": "Version",
"type": "string"
},
"w": {
"default": 512,
"title": "Width",
"type": "integer"
}
},
"required": [],
"type": "object"
}
],
"description": "Top level object, describing the animation\n\n@see http://docs.aenhancers.com/items/compitem/",
"title": "Animation",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/shapes/stroke-dash.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/helpers/visual-object"
},
{
"properties": {
"n": {
"$ref": "#/constants/stroke-dash-type",
"default": "d",
"title": "Type"
},
"v": {
"$ref": "#/properties/value",
"title": "Length"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Stroke Dash",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 41e396c51eff7c6843d3c1efe6576355d1c77ca4 | 2023-02-16T10:33:15 | docs/schema/text/text-range.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"caniuse": "animators-range-selectors",
"description": "Range of text with custom animations and style",
"properties": {
"a": {
"$ref": "#/$defs/text/text-style",
"title": "Style"
},
"nm": {
"title": "Name",
"type": "string"
},
"s": {
"$ref": "#/$defs/text/text-range-selector",
"title": "Selector"
}
},
"title": "Text Range",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/shapes/trim.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/modifier"
},
{
"properties": {
"e": {
"$ref": "#/$defs/animated-properties/value",
"title": "End"
},
"m": {
"$ref": "#/$defs/constants/trim-multiple-shapes",
"title": "Multiple"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Offset"
},
"s": {
"$ref": "#/$defs/animated-properties/value",
"title": "Start"
},
"ty": {
"const": "tm",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"o",
"s",
"e"
],
"type": "object"
}
],
"description": "Trims shapes into a segment",
"title": "Trim",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 4feb7a269d2302c9a68fdb256ee8ac32a253d554 | 2021-12-01T11:13:15 | docs/schema/animation/composition.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Base class for layer holders",
"properties": {
"layers": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/layers/precomposition-layer"
},
{
"$ref": "#/$defs/layers/solid-color-layer"
},
{
"$ref": "#/$defs/layers/image-layer"
},
{
"$ref": "#/$defs/layers/null-layer"
},
{
"$ref": "#/$defs/layers/shape-layer"
},
{
"$ref": "#/$defs/layers/text-layer"
},
{
"$ref": "#/$defs/layers/audio-layer"
}
]
},
"title": "Layers",
"type": "array"
}
},
"required": [
"layers"
],
"title": "Composition",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 6180feff61a75c66ce3c4f1b0ec382cc40653076 | 2021-10-20T14:27:05 | docs/schema/assets/precomposition.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/assets/asset"
},
{
"$ref": "#/$defs/animation/composition"
},
{
"properties": {
"nm": {
"description": "Name of the precomposition",
"title": "Name",
"type": "string"
}
},
"type": "object"
}
],
"description": "",
"title": "Precomposition",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 2ad839487cd22881adc101106d27cf1ce757249d | 2022-06-25T13:10:02 | docs/schema/effects/effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"ef": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/effect-values/no-value"
},
{
"$ref": "#/$defs/effect-values/angle"
},
{
"$ref": "#/$defs/effect-values/checkbox"
},
{
"$ref": "#/$defs/effect-values/color"
},
{
"$ref": "#/$defs/effect-values/drop-down"
},
{
"$ref": "#/$defs/effect-values/ignored"
},
{
"$ref": "#/$defs/effect-values/layer"
},
{
"$ref": "#/$defs/effect-values/point"
},
{
"$ref": "#/$defs/effect-values/slider"
}
]
},
"title": "Effect Values",
"type": "array"
},
"en": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 1,
"title": "Enabled"
},
"ix": {
"title": "Effect Index",
"type": "integer"
},
"ty": {
"title": "Effect type",
"type": "integer"
}
},
"required": [
"ty",
"ef"
],
"type": "object"
}
],
"caniuse": "effects",
"description": "Layer effect",
"title": "Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 876fa6fc4ed0d9f3c938cabdd4c559dbb6f79943 | 2021-10-29T12:52:59 | docs/schema/effects/wavy-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ef": {
"prefixItems": [
{
"$ref": "#/$defs/effect-values/slider",
"title": "Radius"
},
{
"$ref": "#/$defs/effect-values/point",
"title": "Center"
},
{
"$ref": "#/$defs/effect-values/drop-down",
"title": "Conversion type"
},
{
"$ref": "#/$defs/effect-values/drop-down",
"title": "Speed"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "Width"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "Height"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "Phase"
}
],
"title": "Effect values",
"type": "array"
},
"ty": {
"const": 32,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"ef"
],
"type": "object"
}
],
"description": "",
"title": "Wavy Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | ae16fbd9b9f97192f21d292c37dcc2f448e138e8 | 2021-10-21T21:56:38 | docs/schema/constants/shape-direction.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": 1,
"description": "Usually clockwise",
"title": "Normal"
},
{
"const": 3,
"description": "Usually counter clockwise",
"title": "Reversed"
}
],
"title": "ShapeDirection",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 8babae8913ba408f931b62f8f7ac4d721a1c1e34 | 2022-04-09T04:47:44 | docs/schema/animation/animation.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"assets": {
"description": "List of assets that can be referenced by layers",
"items": {
"oneOf": [
{
"$ref": "#/$defs/assets/image"
},
{
"$ref": "#/$defs/assets/precomposition"
},
{
"$ref": "#/$defs/assets/sound"
}
]
},
"title": "Assets",
"type": "array"
},
"chars": {
"description": "Data defining text characters as lottie shapes. If present a player might only render characters defined here and nothing else.",
"items": {
"$ref": "#/$defs/text/character-data"
},
"title": "Chars",
"type": "array"
},
"ddd": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the animation has 3D layers",
"title": "Threedimensional"
},
"fonts": {
"$ref": "#/$defs/text/font-list",
"title": "Fonts"
},
"fr": {
"default": 60,
"description": "Framerate in frames per second",
"title": "Framerate",
"type": "number"
},
"h": {
"default": 512,
"description": "Height of the animation",
"title": "Height",
"type": "integer"
},
"ip": {
"default": 0,
"description": "\"In Point\", which frame the animation starts at (usually 0)",
"title": "In Point",
"type": "number"
},
"markers": {
"description": "Markers defining named sections of the composition.",
"items": {
"$ref": "#/$defs/helpers/marker"
},
"title": "Markers",
"type": "array"
},
"mb": {
"$ref": "#/$defs/animation/motion-blur",
"title": "Motion Blur"
},
"meta": {
"$ref": "#/$defs/animation/metadata",
"description": "Document metadata",
"title": "Metadata"
},
"op": {
"default": 60,
"description": "\"Out Point\", which frame the animation stops/loops at, which makes this the duration in frames when `ip` is 0",
"title": "Out Point",
"type": "number"
},
"v": {
"default": "5.5.2",
"title": "Version",
"type": "string"
},
"w": {
"default": 512,
"description": "Width of the animation",
"title": "Width",
"type": "integer"
}
},
"required": [
"w",
"h",
"fr",
"layers",
"op",
"ip"
],
"type": "object"
},
{
"$ref": "#/$defs/animation/composition"
}
],
"description": "Top level object, describing the animation",
"title": "Animation",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 26e06cd7aa758ae68e95cc4b0b97c64571411b86 | 2022-11-01T09:29:58 | docs/schema/layers/text-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/visual-layer"
},
{
"properties": {
"t": {
"$ref": "#/$defs/text/text-data",
"title": "Data"
},
"ty": {
"const": 5,
"description": "Layer type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"t"
],
"type": "object"
}
],
"caniuse": "layer-text",
"description": "Layer with some text",
"title": "Text Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/effects/effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"ef": {
"items": {
"anyOf": [
{
"$ref": "#/$defs/effect-values/no-value"
},
{
"$ref": "#/$defs/effect-values/angle"
},
{
"$ref": "#/$defs/effect-values/checkbox"
},
{
"$ref": "#/$defs/effect-values/color"
},
{
"$ref": "#/$defs/effect-values/drop-down"
},
{
"$ref": "#/$defs/effect-values/ignored"
},
{
"$ref": "#/$defs/effect-values/layer"
},
{
"$ref": "#/$defs/effect-values/point"
},
{
"$ref": "#/$defs/effect-values/slider"
}
]
},
"title": "Effect Values",
"type": "array"
},
"en": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 1,
"title": "Enabled"
},
"ix": {
"title": "Effect Index",
"type": "integer"
},
"ty": {
"title": "Effect type",
"type": "integer"
}
},
"required": [
"ty",
"ef"
],
"type": "object"
}
],
"caniuse": "effects",
"description": "Layer effect",
"title": "Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 6180feff61a75c66ce3c4f1b0ec382cc40653076 | 2021-10-20T14:27:05 | docs/schema/layers/null-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"ty": {
"const": 3,
"description": "Layer type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Layer with no data, useful to group layers together",
"title": "Null Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/shapes/path.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape"
},
{
"properties": {
"ind": {
"title": "Index",
"type": "integer"
},
"ks": {
"$ref": "#/$defs/animated-properties/shape-property",
"title": "Shape"
},
"ty": {
"const": "sh",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"ks"
],
"type": "object"
}
],
"description": "Animatable Bezier curve",
"title": "Path",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/shapes/ellipse.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape"
},
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Position"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Size"
},
"ty": {
"const": "el",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"s",
"p"
],
"type": "object"
}
],
"description": "Ellipse shape",
"title": "Ellipse",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/text/font-list.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"list": {
"items": {
"$ref": "#/$defs/text/font"
},
"title": "List",
"type": "array"
}
},
"required": [],
"type": "object"
}
],
"description": "List of fonts",
"title": "Font List",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/shapes/trim.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/modifier"
},
{
"properties": {
"e": {
"$ref": "#/$defs/animated-properties/value",
"title": "End"
},
"m": {
"$ref": "#/$defs/constants/trim-multiple-shapes",
"title": "Multiple"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Offset"
},
"s": {
"$ref": "#/$defs/animated-properties/value",
"title": "Start"
},
"ty": {
"const": "tm",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"o",
"s",
"e"
],
"type": "object"
}
],
"caniuse": "shape-trim-path",
"description": "Trims shapes into a segment",
"title": "Trim",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/text/font.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"ascent": {
"title": "Ascent",
"type": "number"
},
"fClass": {
"description": "CSS Class applied to text objects using this font",
"title": "CSS Class",
"type": "string"
},
"fFamily": {
"default": "sans",
"title": "Font Family",
"type": "string"
},
"fName": {
"default": "sans-Regular",
"description": "Name used by text documents to reference this font, usually it's `fFamily` followed by `fStyle`",
"title": "Name",
"type": "string"
},
"fPath": {
"title": "Path",
"type": "string"
},
"fStyle": {
"default": "Regular",
"examples": [
"Regular",
"Bold",
"Bold Italic"
],
"title": "Font Style",
"type": "string"
},
"fWeight": {
"title": "Weight",
"type": "string"
},
"origin": {
"$ref": "#/$defs/constants/font-path-origin",
"title": "Origin"
}
},
"required": [
"fFamily",
"fName",
"fStyle"
],
"type": "object"
}
],
"description": "Describes how a font with given settings should be loaded",
"title": "Font",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 081e222d99c45cf4c67ce46bdbf09ccd5345d80f | 2022-07-26T07:44:02 | docs/schema/shapes/merge.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"properties": {
"mm": {
"$ref": "#/$defs/constants/merge-mode",
"default": 1,
"title": "Merge Mode"
},
"ty": {
"const": "mm",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"caniuse": "shape-merge-path",
"description": "Boolean operator on shapes",
"title": "Merge",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/constants/text-grouping.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": 1,
"title": "Characters"
},
{
"const": 2,
"title": "Word"
},
{
"const": 3,
"title": "Line"
},
{
"const": 4,
"title": "All"
}
],
"title": "TextGrouping",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/helpers/transform.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"anyOf": [
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "Position / Translation",
"title": "Position"
}
}
},
{
"properties": {
"px": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split position X component",
"title": "Position X"
},
"py": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split position Y component",
"title": "Position Y"
},
"pz": {
"$ref": "#/$defs/animated-properties/value",
"description": "Split position Y component",
"title": "Position Z"
}
}
}
],
"description": "Layer transform",
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "Anchor point: a position (relative to its parent) around which transformations are applied (ie: center for rotation / scale)",
"title": "Anchor Point"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"r": {
"$ref": "#/$defs/animated-properties/value",
"description": "Rotation in degrees, clockwise",
"title": "Rotation"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "Scale factor, `[100, 100]` for no scaling",
"title": "Scale"
},
"sa": {
"$ref": "#/$defs/animated-properties/value",
"description": "Direction along which skew is applied, in degrees (`0` skews along the X axis, `90` along the Y axis)",
"title": "Skew Axis"
},
"sk": {
"$ref": "#/$defs/animated-properties/value",
"description": "Skew amount as an angle in degrees",
"title": "Skew"
}
},
"title": "Transform",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 7ce92ecbe87c57f0a66ed19fa889b76cbedb9682 | 2022-05-19T14:42:05 | docs/schema/shapes/shape-element.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"bm": {
"$ref": "#/$defs/constants/blend-mode",
"title": "Blend Mode"
},
"cl": {
"description": "CSS class used by the SVG renderer",
"title": "CSS Class",
"type": "string"
},
"hd": {
"description": "Whether the shape is hidden",
"title": "Hidden",
"type": "boolean"
},
"ix": {
"description": "Index used in expressions",
"title": "Property index",
"type": "integer"
},
"ln": {
"description": "`id` attribute used by the SVG renderer",
"title": "Layer XML ID",
"type": "string"
},
"ty": {
"oneOf": [
{
"const": "rc",
"title": "Rectangle"
},
{
"const": "el",
"title": "Ellipse"
},
{
"const": "sr",
"title": "Polygon / Star"
},
{
"const": "sh",
"title": "Path"
},
{
"const": "fl",
"title": "Fill"
},
{
"const": "st",
"title": "Stroke"
},
{
"const": "gf",
"title": "Gradient fill"
},
{
"const": "gs",
"title": "Gradient stroke"
},
{
"const": "gr",
"title": "Group"
},
{
"const": "tr",
"title": "Transform"
},
{
"const": "rd",
"title": "Rounded corners"
},
{
"const": "pb",
"title": "Pucker / bloat"
},
{
"const": "mm",
"title": "Merge"
},
{
"const": "tw",
"title": "Twist"
},
{
"const": "op",
"title": "Offset path"
},
{
"const": "zz",
"title": "Zig zag"
},
{
"const": "rp",
"title": "Repeater"
},
{
"const": "tm",
"title": "Trim"
}
],
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Base class for all elements of ShapeLayer and Group",
"title": "Shape Element",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/shapes/trim.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/shapes/modifier"
},
{
"properties": {
"e": {
"$ref": "#/properties/value",
"title": "End"
},
"m": {
"$ref": "#/constants/trim-multiple-shapes",
"title": "Multiple"
},
"o": {
"$ref": "#/properties/value",
"title": "Offset"
},
"s": {
"$ref": "#/properties/value",
"title": "Start"
},
"ty": {
"const": "tm",
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Trims shapes into a segment",
"title": "Trim",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/layers/text-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"t": {
"$ref": "#/$defs/text/text-animator-data",
"title": "Data"
},
"ty": {
"const": 5,
"description": "Layer type",
"title": "Layer type",
"type": "integer"
}
},
"required": [
"ty",
"t"
],
"type": "object"
}
],
"description": "",
"title": "Text Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/effects/fill-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/effects/effect"
},
{
"properties": {
"ty": {
"const": 21,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Replaces the whole layer with the given color\n@note Opacity is in [0, 1]",
"title": "Fill Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d301bfaaea449b0328d9a4ab58b3a1705b1787dc | 2021-10-23T12:05:07 | docs/schema/animated-properties/color-value.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/animated-properties/animated-property"
},
{
"if": {
"properties": {
"a": {
"const": 0
}
}
},
"then": {
"properties": {
"k": {
"$ref": "#/$defs/helpers/color",
"title": "Static value"
}
}
}
}
],
"description": "An animatable property that holds a Color",
"title": "Color Value",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | a330dc23e69c9a43e108db57890902a6383d9da2 | 2021-10-27T07:34:28 | docs/schema/effect-values/point.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effect-values/effect-value"
},
{
"properties": {
"ty": {
"const": 3,
"title": "Type",
"type": "integer"
},
"v": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Value"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "",
"title": "Effect Value Point",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b90c97c8a5bc380fc09ac89725c9de207d1d32e | 2022-05-18T11:17:17 | docs/schema/layers/visual-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "If 1, The layer will rotate itself to match its animated position path",
"title": "Auto Orient"
},
"cp": {
"title": "Collapse Transform",
"type": "boolean"
},
"ef": {
"description": "List of layer effects",
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/custom-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
},
{
"$ref": "#/$defs/effects/radial-wipe-effect"
},
{
"$ref": "#/$defs/effects/wavy-effect"
},
{
"$ref": "#/$defs/effects/puppet-effect"
},
{
"$ref": "#/$defs/effects/spherize-effect"
},
{
"$ref": "#/$defs/effects/paint-over-transparent-effect"
},
{
"$ref": "#/$defs/effects/mesh-warp-effect"
},
{
"$ref": "#/$defs/effects/displacement-map-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"description": "Layer transform",
"title": "Transform"
},
"masksProperties": {
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"description": "Whether motion blur is enabled for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"td": {
"title": "Matte Target",
"type": "integer"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"title": "Matte Mode"
}
},
"required": [
"ks"
],
"type": "object"
}
],
"description": "Layer used to affect visual elements",
"title": "Visual Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 14836b59575d38fe92928f008000d27d89e36b67 | 2021-10-24T09:39:09 | docs/schema/shapes/group.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"properties": {
"it": {
"$ref": "#/$defs/shapes/shape-list",
"title": "Shapes"
},
"np": {
"title": "Number Of Properties",
"type": "number"
},
"ty": {
"const": "gr",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Shape Element that can contain other shapes",
"title": "Group",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | f30e9c421acc17a0db0ce171b904e9caf31aa136 | 2021-11-29T09:31:36 | docs/schema/effects/custom-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ty": {
"const": 5,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Some lottie files use `ty` = 5 for many different effects",
"title": "Custom Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 4feb7a269d2302c9a68fdb256ee8ac32a253d554 | 2021-12-01T11:13:15 | docs/schema/layers/shape-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/visual-layer"
},
{
"properties": {
"shapes": {
"$ref": "#/$defs/shapes/shape-list",
"title": "Shapes"
},
"ty": {
"const": 4,
"description": "Layer type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"shapes"
],
"type": "object"
}
],
"description": "Layer containing Shapes",
"title": "Shape Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/constants/composite.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "How to stack copies in a repeater",
"oneOf": [
{
"const": 1,
"title": "Above"
},
{
"const": 2,
"title": "Below"
}
],
"title": "Composite",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/effects/gaussian-blur-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ty": {
"const": 29,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Gaussian blur",
"title": "Gaussian Blur Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | cbb029090fd3d119ff1bc9d33fe60a7878f8e0a7 | 2022-04-14T09:22:22 | docs/schema/animated-properties/animated-property.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the property is animated",
"title": "Animated"
},
"ix": {
"title": "Property Index",
"type": "integer"
},
"x": {
"title": "Expression",
"type": "string"
}
}
},
{
"if": {
"properties": {
"a": {
"const": 1
}
}
},
"then": {
"properties": {
"k": {
"description": "Array of keyframes",
"items": {
"$ref": "#/$defs/animated-properties/keyframe"
},
"title": "Animated Value",
"type": "array"
}
}
}
}
],
"description": "An animatable property that holds an array of numbers",
"required": [
"k"
],
"title": "Multi Dimensional",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 26e06cd7aa758ae68e95cc4b0b97c64571411b86 | 2022-11-01T09:29:58 | docs/schema/text/text-data.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"caniuse": "text-animators",
"items": {
"$ref": "#/$defs/text/text-range"
},
"title": "Ranges",
"type": "array"
},
"d": {
"$ref": "#/$defs/text/animated-text-document",
"title": "Document"
},
"m": {
"$ref": "#/$defs/text/text-alignment-options",
"title": "Alignment"
},
"p": {
"$ref": "#/$defs/text/text-follow-path",
"title": "Follow Path"
}
},
"required": [
"a",
"d",
"m",
"p"
],
"type": "object"
}
],
"description": "Contains all the text data and animation",
"title": "Text Data",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/effects/effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"ef": {
"items": {
"$ref": "#/$defs/effects/effect-value"
},
"title": "Effects",
"type": "array"
},
"ix": {
"title": "Effect Index",
"type": "integer"
},
"ty": {
"title": "Type",
"type": "integer"
}
},
"required": [],
"type": "object"
}
],
"description": "Layer effect",
"title": "Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/constants/text-shape.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": 1,
"title": "Square"
},
{
"const": 2,
"title": "Ramp Up"
},
{
"const": 3,
"title": "Ramp Down"
},
{
"const": 4,
"title": "Triangle"
},
{
"const": 5,
"title": "Round"
},
{
"const": 6,
"title": "Smooth"
}
],
"title": "TextShape",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 718213e5e7f2fb9f87829f70a6593b4d739e43eb | 2021-10-26T07:06:57 | docs/schema/shapes/rectangle.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape"
},
{
"properties": {
"p": {
"$ref": "#/$defs/animated-properties/position",
"description": "Center of the rectangle",
"title": "Position"
},
"r": {
"$ref": "#/$defs/animated-properties/value",
"title": "Rounded"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Size"
},
"ty": {
"const": "rc",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"s",
"p"
],
"type": "object"
}
],
"description": "A simple rectangle shape",
"title": "Rectangle",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/constants/blend-mode.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": 0,
"title": "Normal"
},
{
"const": 1,
"title": "Multiply"
},
{
"const": 2,
"title": "Screen"
},
{
"const": 3,
"title": "Overlay"
},
{
"const": 4,
"title": "Darken"
},
{
"const": 5,
"title": "Lighten"
},
{
"const": 6,
"title": "Color Dodge"
},
{
"const": 7,
"title": "Color Burn"
},
{
"const": 8,
"title": "Hard Light"
},
{
"const": 9,
"title": "Soft Light"
},
{
"const": 10,
"title": "Difference"
},
{
"const": 11,
"title": "Exclusion"
},
{
"const": 12,
"title": "Hue"
},
{
"const": 13,
"title": "Saturation"
},
{
"const": 14,
"title": "Color"
},
{
"const": 15,
"title": "Luminosity"
}
],
"title": "BlendMode",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/helpers/mask.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"inv": {
"default": false,
"title": "Inverted",
"type": "boolean"
},
"mode": {
"$ref": "#/$defs/constants/mask-mode",
"default": "i",
"title": "Mode"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"pt": {
"$ref": "#/$defs/animated-properties/shape-property",
"title": "Shape"
},
"x": {
"$ref": "#/$defs/animated-properties/value",
"title": "Dilate"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Mask",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/constants/text-justify.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": 0,
"title": "Left"
},
{
"const": 1,
"title": "Right"
},
{
"const": 2,
"title": "Center"
}
],
"title": "TextJustify",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/animated-properties/shape-keyframe.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/animated-properties/keyframe"
},
{
"properties": {
"s": {
"items": {
"$ref": "#/$defs/helpers/bezier"
},
"title": "Start",
"type": "array"
}
},
"type": "object"
}
],
"description": "Keyframe holding Bezier objects",
"title": "Shape Keyframe",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/styles/satin-style.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/styles/layer-style"
},
{
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/value",
"title": "Angle"
},
"bm": {
"$ref": "#/$defs/animated-properties/value",
"title": "Blend Mode"
},
"c": {
"$ref": "#/$defs/animated-properties/color-value",
"title": "Color"
},
"d": {
"$ref": "#/$defs/animated-properties/value",
"title": "Distance"
},
"in": {
"$ref": "#/$defs/animated-properties/value",
"title": "Invert"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"s": {
"$ref": "#/$defs/animated-properties/value",
"title": "Size"
},
"ty": {
"const": 6,
"description": "Layer Type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"caniuse": "style-satin",
"title": "Satin",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/shapes/repeater.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/modifier"
},
{
"properties": {
"c": {
"$ref": "#/$defs/animated-properties/value",
"title": "Copies"
},
"m": {
"$ref": "#/$defs/constants/composite",
"default": 1,
"title": "Composite"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Offset"
},
"tr": {
"$ref": "#/$defs/shapes/repeater-transform",
"title": "Transform"
},
"ty": {
"const": "rp",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty",
"c",
"tr"
],
"type": "object"
}
],
"description": "Duplicates previous shapes in a group",
"title": "Repeater",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/text/text-data.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Animated property representing the text contents",
"properties": {
"k": {
"items": {
"$ref": "#/$defs/text/text-data-keyframe"
},
"title": "Keyframes",
"type": "array"
}
},
"required": [
"k"
],
"title": "Text Data",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 923c2bcbd2a1381a6d7da78748d759beddb9316d | 2023-04-26T07:48:18 | docs/schema/layers/visual-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "If 1, The layer will rotate itself to match its animated position path",
"title": "Auto Orient"
},
"bm": {
"$ref": "#/$defs/constants/blend-mode",
"default": 0,
"title": "Blend Mode"
},
"cl": {
"description": "CSS class used by the SVG renderer",
"title": "CSS Class",
"type": "string"
},
"cp": {
"title": "Collapse Transform",
"type": "boolean"
},
"ef": {
"caniuse": "effects",
"description": "List of layer effects",
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/custom-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
},
{
"$ref": "#/$defs/effects/radial-wipe-effect"
},
{
"$ref": "#/$defs/effects/wavy-effect"
},
{
"$ref": "#/$defs/effects/puppet-effect"
},
{
"$ref": "#/$defs/effects/spherize-effect"
},
{
"$ref": "#/$defs/effects/mesh-warp-effect"
},
{
"$ref": "#/$defs/effects/displacement-map-effect"
},
{
"$ref": "#/$defs/effects/twirl-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"caniuse": "mask",
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"caniuse": "transform",
"description": "Layer transform",
"title": "Transform"
},
"ln": {
"description": "`id` attribute used by the SVG renderer",
"title": "Layer XML ID",
"type": "string"
},
"masksProperties": {
"caniuse": "mask",
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"description": "Whether motion blur is enabled for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"sy": {
"caniuse": "styles",
"description": "Styling effects for this layer",
"items": {
"oneOf": [
{
"$ref": "#/$defs/styles/stroke-style"
},
{
"$ref": "#/$defs/styles/drop-shadow-style"
},
{
"$ref": "#/$defs/styles/inner-shadow-style"
},
{
"$ref": "#/$defs/styles/outer-glow-style"
},
{
"$ref": "#/$defs/styles/inner-glow-style"
},
{
"$ref": "#/$defs/styles/bevel-emboss-style"
},
{
"$ref": "#/$defs/styles/satin-style"
},
{
"$ref": "#/$defs/styles/color-overlay-style"
},
{
"$ref": "#/$defs/styles/gradient-overlay-style"
}
]
},
"title": "Layer style",
"type": "array"
},
"td": {
"$ref": "#/$defs/helpers/int-boolean",
"caniuse": "property-matte-mask",
"description": "If set to 1, it means a layer is using this layer as a track matte",
"title": "Matte Target"
},
"tg": {
"description": "tag name used by the SVG renderer",
"title": "Layer XML tag name",
"type": "string"
},
"tp": {
"description": "Index of the layer used as matte, if omitted assume the layer above the current one",
"title": "Matte Parent",
"type": "integer"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"caniuse": "property-matte-mask",
"description": "Defines the track matte mode for the layer",
"title": "Matte Mode"
}
},
"required": [
"ks"
],
"type": "object"
}
],
"description": "Layer used to affect visual elements",
"title": "Visual Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d4d7b11657e01d91f05f85207c991f040565d18b | 2022-05-20T09:36:32 | docs/schema/layers/visual-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "If 1, The layer will rotate itself to match its animated position path",
"title": "Auto Orient"
},
"cp": {
"title": "Collapse Transform",
"type": "boolean"
},
"ef": {
"description": "List of layer effects",
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/custom-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
},
{
"$ref": "#/$defs/effects/radial-wipe-effect"
},
{
"$ref": "#/$defs/effects/wavy-effect"
},
{
"$ref": "#/$defs/effects/puppet-effect"
},
{
"$ref": "#/$defs/effects/spherize-effect"
},
{
"$ref": "#/$defs/effects/paint-over-transparent-effect"
},
{
"$ref": "#/$defs/effects/mesh-warp-effect"
},
{
"$ref": "#/$defs/effects/displacement-map-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"description": "Layer transform",
"title": "Transform"
},
"masksProperties": {
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"description": "Whether motion blur is enabled for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"sy": {
"description": "Styling effects for this layer",
"items": {
"oneOf": [
{
"$ref": "#/$defs/styles/stroke-style"
},
{
"$ref": "#/$defs/styles/drop-shadow-style"
},
{
"$ref": "#/$defs/styles/inner-shadow-style"
},
{
"$ref": "#/$defs/styles/outer-glow-style"
},
{
"$ref": "#/$defs/styles/inner-glow-style"
},
{
"$ref": "#/$defs/styles/bevel-emboss-style"
},
{
"$ref": "#/$defs/styles/satin-style"
},
{
"$ref": "#/$defs/styles/color-overlay-style"
},
{
"$ref": "#/$defs/styles/gradient-overlay-style"
}
]
},
"title": "Layer style",
"type": "array"
},
"td": {
"title": "Matte Target",
"type": "integer"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"title": "Matte Mode"
}
},
"required": [
"ks"
],
"type": "object"
}
],
"description": "Layer used to affect visual elements",
"title": "Visual Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | fbb0a387a9aeece260837679ee056e08e9ee6123 | 2021-11-23T09:41:42 | docs/schema/animated-properties/keyframe.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"h": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"title": "Hold"
},
"s": {
"description": "Value at this keyframe. Note the if the property is a scalar, keyframe values are still represented as arrays",
"items": {
"type": "number"
},
"title": "Value",
"type": "array"
},
"t": {
"default": 0,
"title": "Time",
"type": "number"
}
}
},
{
"if": {
"properties": {
"h": {
"const": 0
}
}
},
"then": {
"properties": {
"i": {
"$ref": "#/$defs/animated-properties/keyframe-bezier-handle",
"description": "Easing tangent going into the next keyframe",
"title": "In Tangent"
},
"o": {
"$ref": "#/$defs/animated-properties/keyframe-bezier-handle",
"description": "Easing tangent leaving the current keyframe",
"title": "Out Tangent"
}
}
}
}
],
"description": "",
"required": [
"t",
"s"
],
"title": "Keyframe",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 081e222d99c45cf4c67ce46bdbf09ccd5345d80f | 2022-07-26T07:44:02 | docs/schema/shapes/zig-zag.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"properties": {
"pt": {
"$ref": "#/$defs/animated-properties/value",
"description": "Point type (1 = corner, 2 = smooth)",
"title": "Points"
},
"r": {
"$ref": "#/$defs/animated-properties/value",
"description": "Number of ridges per segment",
"title": "Frequency"
},
"s": {
"$ref": "#/$defs/animated-properties/value",
"description": "Distance between peaks and troughs",
"title": "Amplitude"
},
"ty": {
"const": "zz",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Changes the edges of affected shapes into a series of peaks and valleys of uniform size",
"title": "Zig Zags",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 48d8feb1f07379ebfe51f97f9b548566ee4a3193 | 2022-10-13T05:38:12 | docs/schema/layers/text-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/visual-layer"
},
{
"properties": {
"t": {
"$ref": "#/$defs/text/text-animator-data",
"title": "Data"
},
"ty": {
"const": 5,
"description": "Layer type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"t"
],
"type": "object"
}
],
"caniuse": "layer-text",
"description": "Layer with some text",
"title": "Text Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 29151d603b2ad16a1019e053fdc8ab0ffc89bcd6 | 2022-04-08T19:32:25 | docs/schema/animation/animation.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"assets": {
"description": "List of assets that can be referenced by layers",
"items": {
"oneOf": [
{
"$ref": "#/$defs/assets/image"
},
{
"$ref": "#/$defs/assets/precomposition"
},
{
"$ref": "#/$defs/assets/sound"
}
]
},
"title": "Assets",
"type": "array"
},
"chars": {
"description": "Data defining text characters as lottie shapes. If present a player might only render characters defined here and nothing else.",
"items": {
"$ref": "#/$defs/text/character-data"
},
"title": "Chars",
"type": "array"
},
"ddd": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"title": "Threedimensional"
},
"fonts": {
"$ref": "#/$defs/text/font-list",
"title": "Fonts"
},
"fr": {
"default": 60,
"description": "Framerate in frames per second",
"title": "Framerate",
"type": "number"
},
"h": {
"default": 512,
"description": "Height of the animation",
"title": "Height",
"type": "integer"
},
"ip": {
"default": 0,
"description": "\"In Point\", which frame the animation starts at (usually 0)",
"title": "In Point",
"type": "number"
},
"markers": {
"description": "Markers defining named sections of the composition.",
"items": {
"$ref": "#/$defs/helpers/marker"
},
"title": "Markers",
"type": "array"
},
"mb": {
"$ref": "#/$defs/animation/motion-blur",
"title": "Motion Blur"
},
"meta": {
"$ref": "#/$defs/animation/metadata",
"description": "Document metadata",
"title": "Metadata"
},
"op": {
"default": 60,
"description": "\"Out Point\", which frame the animation stops/loops at, which makes this the duration in frames when `ip` is 0",
"title": "Out Point",
"type": "number"
},
"v": {
"default": "5.5.2",
"title": "Version",
"type": "string"
},
"w": {
"default": 512,
"description": "Width of the animation",
"title": "Width",
"type": "integer"
}
},
"required": [
"w",
"h",
"fr",
"layers",
"op",
"ip"
],
"type": "object"
},
{
"$ref": "#/$defs/animation/composition"
}
],
"description": "Top level object, describing the animation",
"title": "Animation",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 09f7f2bf9faa628c6728b9bc8bb75d0f79fcce13 | 2021-10-19T15:25:56 | docs/schema/text/font.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"ascent": {
"title": "Ascent",
"type": "number"
},
"fFamily": {
"default": "sans",
"title": "Font Family",
"type": "string"
},
"fName": {
"default": "sans-Regular",
"description": "Name used by text documents to reference this font, usually it's `fFamily` followed by `fStyle`",
"title": "Name",
"type": "string"
},
"fPath": {
"title": "Path",
"type": "string"
},
"fStyle": {
"default": "Regular",
"examples": [
"Regular",
"Bold",
"Bold Italic"
],
"title": "Font Style",
"type": "string"
},
"fWeight": {
"title": "Weight",
"type": "string"
},
"origin": {
"$ref": "#/$defs/constants/font-path-origin",
"title": "Origin"
}
},
"required": [],
"type": "object"
}
],
"description": "",
"title": "Font",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/constants/stroke-dash-type.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"oneOf": [
{
"const": "d",
"title": "Dash"
},
{
"const": "g",
"title": "Gap"
},
{
"const": "o",
"title": "Offset"
}
],
"title": "StrokeDashType",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d301bfaaea449b0328d9a4ab58b3a1705b1787dc | 2021-10-23T12:05:07 | docs/schema/helpers/int-boolean.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"default": 0,
"description": "Represents boolean values as an integer. 0 is false, 1 is true.",
"enum": [
0,
1
],
"examples": [
0
],
"title": "Integer Boolean",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9c6870c18bdca76cbfc314c6bf9bba87fe3176e3 | 2022-04-14T11:01:40 | docs/schema/animated-properties/keyframe.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/animated-properties/keyframe-base"
},
{
"properties": {
"e": {
"deprecated": true,
"description": "Value at the end of the keyframe, note that this is deprecated and you should use `s` from the next keyframe to get this value",
"items": {
"type": "number"
},
"title": "End value",
"type": "array"
},
"s": {
"description": "Value at this keyframe. Note the if the property is a scalar, keyframe values are still represented as arrays",
"items": {
"type": "number"
},
"title": "Value",
"type": "array"
}
}
},
{
"if": {
"oneOf": [
{
"properties": {
"h": {
"const": 0
}
}
},
{
"not": {
"required": [
"h"
]
}
}
]
},
"then": {
"properties": {
"i": {
"$ref": "#/$defs/animated-properties/keyframe-bezier-handle",
"description": "Easing tangent going into the next keyframe",
"title": "In Tangent"
},
"o": {
"$ref": "#/$defs/animated-properties/keyframe-bezier-handle",
"description": "Easing tangent leaving the current keyframe",
"title": "Out Tangent"
}
}
}
}
],
"description": "A Keyframes specifies the value at a specific time and the interpolation function to reach the next keyframe.",
"required": [
"t",
"s"
],
"title": "Keyframe",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | d301bfaaea449b0328d9a4ab58b3a1705b1787dc | 2021-10-23T12:05:07 | docs/schema/shapes/fill.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"properties": {
"c": {
"$ref": "#/$defs/animated-properties/color-value",
"title": "Color"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"r": {
"$ref": "#/$defs/constants/fill-rule",
"title": "Fill Rule"
},
"ty": {
"const": "fl",
"title": "Shape Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Solid fill color",
"title": "Fill",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | aa5b29ee6d5a596aa4b6123a80a49c5f13cbd81c | 2021-10-18T13:52:26 | docs/schema/helpers/transform.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"$ref": "#/properties/multi-dimensional",
"title": "Anchor Point"
},
"o": {
"$ref": "#/properties/value",
"title": "Opacity"
},
"p": {
"$ref": "#/properties/multi-dimensional",
"title": "Position"
},
"r": {
"$ref": "#/properties/value",
"title": "Rotation"
},
"s": {
"$ref": "#/properties/multi-dimensional",
"title": "Scale"
},
"sa": {
"$ref": "#/properties/value",
"title": "Skew Axis"
},
"sk": {
"$ref": "#/properties/value",
"title": "Skew"
}
},
"required": [],
"type": "object"
}
],
"description": "Layer transform",
"title": "Transform",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 5a455049fcd3a4734aeea9d182232e47b17b2916 | 2021-10-25T18:55:59 | docs/schema/shapes/base-stroke.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"d": {
"items": {
"$ref": "#/$defs/shapes/stroke-dash"
},
"title": "Dashes",
"type": "array"
},
"lc": {
"$ref": "#/$defs/constants/line-cap",
"default": 2,
"title": "Line Cap"
},
"lj": {
"$ref": "#/$defs/constants/line-join",
"default": 2,
"title": "Line Join"
},
"ml": {
"default": 0,
"title": "Miter Limit",
"type": "number"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"w": {
"$ref": "#/$defs/animated-properties/value",
"title": "Width"
}
},
"required": [
"o",
"w"
],
"type": "object"
}
],
"description": "",
"title": "Base Stroke",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/animated-properties/gradient-colors.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"k": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Colors"
},
"p": {
"default": 0,
"title": "Count",
"type": "integer"
}
},
"required": [],
"type": "object"
}
],
"description": "Represents colors and offsets in a gradient\n\nColors are represented as a flat list interleaving offsets and color components in weird ways\nThere are two possible layouts:\n\nWithout alpha, the colors are a sequence of offset, r, g, b\n\nWith alpha, same as above but at the end of the list there is a sequence of offset, alpha\n\nExamples:\n\nFor the gradient [0, red], [0.5, yellow], [1, green]\nThe list would be [0, 1, 0, 0, 0.5, 1, 1, 0, 1, 0, 1, 0]\n\nFor the gradient [0, red at 80% opacity], [0.5, yellow at 70% opacity], [1, green at 60% opacity]\nThe list would be [0, 1, 0, 0, 0.5, 1, 1, 0, 1, 0, 1, 0, 0, 0.8, 0.5, 0.7, 1, 0.6]",
"title": "Gradient Colors",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/helpers/mask.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"inv": {
"caniuse": "mask-inverted",
"default": false,
"title": "Inverted",
"type": "boolean"
},
"mode": {
"$ref": "#/$defs/constants/mask-mode",
"caniuse": "mask-modes",
"default": "i",
"title": "Mode"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"caniuse": "mask-opacity",
"title": "Opacity"
},
"pt": {
"$ref": "#/$defs/animated-properties/shape-property",
"title": "Shape"
},
"x": {
"$ref": "#/$defs/animated-properties/value",
"caniuse": "mask-expansion",
"title": "Dilate"
}
},
"required": [],
"type": "object"
}
],
"caniuse": "mask",
"description": "Bezier shape used to mask/clip a layer",
"title": "Mask",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 48d8feb1f07379ebfe51f97f9b548566ee4a3193 | 2022-10-13T05:38:12 | docs/schema/animation/animation.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"assets": {
"description": "List of assets that can be referenced by layers",
"items": {
"oneOf": [
{
"$ref": "#/$defs/assets/image"
},
{
"$ref": "#/$defs/assets/precomposition"
},
{
"$ref": "#/$defs/assets/sound"
},
{
"$ref": "#/$defs/assets/data-source"
}
]
},
"title": "Assets",
"type": "array"
},
"chars": {
"description": "Data defining text characters as lottie shapes. If present a player might only render characters defined here and nothing else.",
"items": {
"$ref": "#/$defs/text/character-data"
},
"title": "Characters",
"type": "array"
},
"comps": {
"description": "List of Extra compositions not referenced by anything",
"items": {
"$ref": "#/$defs/assets/precomposition"
},
"title": "Extra Compositions",
"type": "array"
},
"ddd": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "Whether the animation has 3D layers",
"title": "Threedimensional"
},
"fonts": {
"$ref": "#/$defs/text/font-list",
"title": "Fonts"
},
"fr": {
"default": 60,
"description": "Framerate in frames per second",
"title": "Framerate",
"type": "number"
},
"h": {
"default": 512,
"description": "Height of the animation",
"title": "Height",
"type": "integer"
},
"ip": {
"default": 0,
"description": "\"In Point\", which frame the animation starts at (usually 0)",
"title": "In Point",
"type": "number"
},
"markers": {
"description": "Markers defining named sections of the composition.",
"items": {
"$ref": "#/$defs/helpers/marker"
},
"title": "Markers",
"type": "array"
},
"mb": {
"$ref": "#/$defs/animation/motion-blur",
"title": "Motion Blur"
},
"meta": {
"$ref": "#/$defs/animation/metadata",
"description": "Document metadata",
"title": "Metadata"
},
"metadata": {
"$ref": "#/$defs/animation/user-metadata",
"title": "User Metadata"
},
"op": {
"default": 60,
"description": "\"Out Point\", which frame the animation stops/loops at, which makes this the duration in frames when `ip` is 0",
"title": "Out Point",
"type": "number"
},
"v": {
"default": "5.5.2",
"title": "Version",
"type": "string"
},
"w": {
"default": 512,
"description": "Width of the animation",
"title": "Width",
"type": "integer"
}
},
"required": [
"w",
"h",
"fr",
"layers",
"op",
"ip"
],
"type": "object"
},
{
"$ref": "#/$defs/animation/composition"
}
],
"description": "Top level object, describing the animation",
"title": "Animation",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 26e06cd7aa758ae68e95cc4b0b97c64571411b86 | 2022-11-01T09:29:58 | docs/schema/constants/matte-mode.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "How a layer should mask another layer",
"oneOf": [
{
"const": 0,
"title": "Normal"
},
{
"const": 1,
"title": "Alpha"
},
{
"const": 2,
"title": "Inverted Alpha"
},
{
"const": 3,
"title": "Luma"
},
{
"const": 4,
"title": "Inverted Luma"
}
],
"title": "Matte Mode",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 38b3aebddc31b75f10844c60e0c117c6b19349aa | 2023-03-09T19:41:19 | docs/schema/effects/twirl-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ef": {
"prefixItems": [
{
"$ref": "#/$defs/effect-values/angle",
"title": "Angle"
},
{
"$ref": "#/$defs/effect-values/slider",
"title": "Radius"
},
{
"$ref": "#/$defs/effect-values/point",
"title": "Center"
}
],
"title": "Effect values",
"type": "array"
},
"ty": {
"const": 30,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty",
"ef"
],
"type": "object"
}
],
"description": "",
"title": "Twirl Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 26e06cd7aa758ae68e95cc4b0b97c64571411b86 | 2022-11-01T09:29:58 | docs/schema/constants/blend-mode.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"caniuse": "blend-mode",
"description": "Layer and shape blend mode",
"oneOf": [
{
"const": 0,
"title": "Normal"
},
{
"const": 1,
"title": "Multiply"
},
{
"const": 2,
"title": "Screen"
},
{
"const": 3,
"title": "Overlay"
},
{
"const": 4,
"title": "Darken"
},
{
"const": 5,
"title": "Lighten"
},
{
"const": 6,
"title": "Color Dodge"
},
{
"const": 7,
"title": "Color Burn"
},
{
"const": 8,
"title": "Hard Light"
},
{
"const": 9,
"title": "Soft Light"
},
{
"const": 10,
"title": "Difference"
},
{
"const": 11,
"title": "Exclusion"
},
{
"const": 12,
"title": "Hue"
},
{
"const": 13,
"title": "Saturation"
},
{
"const": 14,
"title": "Color"
},
{
"const": 15,
"title": "Luminosity"
},
{
"const": 16,
"title": "Add"
},
{
"const": 17,
"title": "Hard Mix"
}
],
"title": "Blend Mode",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/shapes/twist.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/value",
"title": "Angle"
},
"c": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Center"
},
"ty": {
"const": "tw",
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "",
"title": "Twist",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 38b3aebddc31b75f10844c60e0c117c6b19349aa | 2023-03-09T19:41:19 | docs/schema/layers/visual-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/layer"
},
{
"properties": {
"ao": {
"$ref": "#/$defs/helpers/int-boolean",
"default": 0,
"description": "If 1, The layer will rotate itself to match its animated position path",
"title": "Auto Orient"
},
"bm": {
"$ref": "#/$defs/constants/blend-mode",
"default": 0,
"title": "Blend Mode"
},
"cl": {
"description": "CSS class used by the SVG renderer",
"title": "CSS Class",
"type": "string"
},
"cp": {
"title": "Collapse Transform",
"type": "boolean"
},
"ef": {
"caniuse": "effects",
"description": "List of layer effects",
"items": {
"oneOf": [
{
"$ref": "#/$defs/effects/custom-effect"
},
{
"$ref": "#/$defs/effects/drop-shadow-effect"
},
{
"$ref": "#/$defs/effects/fill-effect"
},
{
"$ref": "#/$defs/effects/gaussian-blur-effect"
},
{
"$ref": "#/$defs/effects/matte3-effect"
},
{
"$ref": "#/$defs/effects/pro-levels-effect"
},
{
"$ref": "#/$defs/effects/stroke-effect"
},
{
"$ref": "#/$defs/effects/tint-effect"
},
{
"$ref": "#/$defs/effects/tritone-effect"
},
{
"$ref": "#/$defs/effects/radial-wipe-effect"
},
{
"$ref": "#/$defs/effects/wavy-effect"
},
{
"$ref": "#/$defs/effects/puppet-effect"
},
{
"$ref": "#/$defs/effects/spherize-effect"
},
{
"$ref": "#/$defs/effects/mesh-warp-effect"
},
{
"$ref": "#/$defs/effects/displacement-map-effect"
},
{
"$ref": "#/$defs/effects/twirl-effect"
}
]
},
"title": "Effects",
"type": "array"
},
"hasMask": {
"caniuse": "mask",
"description": "Whether the layer has masks applied",
"title": "Has Masks",
"type": "boolean"
},
"ks": {
"$ref": "#/$defs/helpers/transform",
"caniuse": "transform",
"description": "Layer transform",
"title": "Transform"
},
"ln": {
"description": "`id` attribute used by the SVG renderer",
"title": "Layer XML ID",
"type": "string"
},
"masksProperties": {
"caniuse": "mask",
"items": {
"$ref": "#/$defs/helpers/mask"
},
"title": "Masks",
"type": "array"
},
"mb": {
"description": "Whether motion blur is enabled for the layer",
"title": "Motion Blur",
"type": "boolean"
},
"sy": {
"caniuse": "styles",
"description": "Styling effects for this layer",
"items": {
"oneOf": [
{
"$ref": "#/$defs/styles/stroke-style"
},
{
"$ref": "#/$defs/styles/drop-shadow-style"
},
{
"$ref": "#/$defs/styles/inner-shadow-style"
},
{
"$ref": "#/$defs/styles/outer-glow-style"
},
{
"$ref": "#/$defs/styles/inner-glow-style"
},
{
"$ref": "#/$defs/styles/bevel-emboss-style"
},
{
"$ref": "#/$defs/styles/satin-style"
},
{
"$ref": "#/$defs/styles/color-overlay-style"
},
{
"$ref": "#/$defs/styles/gradient-overlay-style"
}
]
},
"title": "Layer style",
"type": "array"
},
"td": {
"caniuse": "property-matte-mask",
"title": "Matte Target",
"type": "integer"
},
"tg": {
"description": "tag name used by the SVG renderer",
"title": "Layer XML tag name",
"type": "string"
},
"tt": {
"$ref": "#/$defs/constants/matte-mode",
"caniuse": "property-matte-mask",
"title": "Matte Mode"
}
},
"required": [
"ks"
],
"type": "object"
}
],
"description": "Layer used to affect visual elements",
"title": "Visual Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/shapes/shape-element.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"properties": {
"bm": {
"title": "Bm",
"type": "integer"
},
"cix": {
"title": "Property Index",
"type": "integer"
},
"hd": {
"title": "Hidden",
"type": "boolean"
},
"ty": {
"oneOf": [
{
"const": "rc",
"title": "Rectangle"
},
{
"const": "el",
"title": "Ellipse"
},
{
"const": "sr",
"title": "Polygon / Star"
},
{
"const": "sh",
"title": "Path"
},
{
"const": "fl",
"title": "Fill"
},
{
"const": "st",
"title": "Stroke"
},
{
"const": "gf",
"title": "Gradient fill"
},
{
"const": "gs",
"title": "Gradient stroke"
},
{
"const": "gr",
"title": "Group"
},
{
"const": "tr",
"title": "Transform"
},
{
"const": "rd",
"title": "Rounded corners"
},
{
"const": "pb",
"title": "Pucker / bloat"
},
{
"const": "mm",
"title": "Merge"
},
{
"const": "tw",
"title": "Twist"
},
{
"const": "op",
"title": "Offset path"
}
],
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Base class for all elements of ShapeLayer and Group",
"title": "Shape Element",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | bc9a3f40c7bbf65091fcc23505f5e641bd1e6527 | 2022-07-09T16:10:00 | docs/schema/shapes/gradient.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"a": {
"$ref": "#/$defs/animated-properties/value",
"description": "Highlight Angle, relative to the direction from `s` to `e`",
"title": "Highlight Angle"
},
"e": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "End point for the gradient",
"title": "End Point"
},
"g": {
"$ref": "#/$defs/animated-properties/gradient-colors",
"description": "Gradient colors",
"title": "Colors"
},
"h": {
"$ref": "#/$defs/animated-properties/value",
"description": "Highlight Length, as a percentage between `s` and `e`",
"title": "Highlight Length"
},
"s": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"description": "Starting point for the gradient",
"title": "Start Point"
},
"t": {
"$ref": "#/$defs/constants/gradient-type",
"default": 1,
"description": "Type of the gradient",
"title": "Gradient Type"
}
},
"required": [
"s",
"e",
"g"
],
"type": "object"
}
],
"description": "",
"title": "Gradient",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | a330dc23e69c9a43e108db57890902a6383d9da2 | 2021-10-27T07:34:28 | docs/schema/effects/matte3-effect.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/effects/effect"
},
{
"properties": {
"ef": {
"prefixItems": [
{
"$ref": "#/$defs/effect-values/slider",
"title": "index"
}
],
"title": "Effect values",
"type": "array"
},
"ty": {
"const": 28,
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "",
"title": "Matte3Effect",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/shapes/shape.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/shapes/shape-element"
},
{
"properties": {
"d": {
"default": 0,
"title": "Direction",
"type": "number"
},
"ty": {
"const": null,
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Drawable shape",
"title": "Shape",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/shapes/stroke.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/shapes/shape-element"
},
{
"$ref": "#/$defs/shapes/base-stroke"
},
{
"properties": {
"c": {
"$ref": "#/$defs/animated-properties/multi-dimensional",
"title": "Color"
},
"ty": {
"const": "st",
"title": "Type",
"type": "string"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"description": "Solid stroke",
"title": "Stroke",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/layers/text-layer.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/layers/visual-layer"
},
{
"properties": {
"t": {
"$ref": "#/$defs/text/text-animator-data",
"title": "Data"
},
"ty": {
"const": 5,
"description": "Layer type",
"title": "Layer type",
"type": "integer"
}
},
"required": [
"ty",
"t"
],
"type": "object"
}
],
"description": "Layer with some text",
"title": "Text Layer",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 58ded472e45867cf164ea2fcc91bad061cb88224 | 2022-06-20T14:24:59 | docs/schema/styles/inner-glow-style.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/styles/layer-style"
},
{
"properties": {
"bm": {
"$ref": "#/$defs/animated-properties/value",
"title": "Blend Mode"
},
"c": {
"$ref": "#/$defs/animated-properties/color-value",
"title": "Color"
},
"ch": {
"$ref": "#/$defs/animated-properties/value",
"title": "Choke Spread"
},
"j": {
"$ref": "#/$defs/animated-properties/value",
"title": "Jitter"
},
"no": {
"$ref": "#/$defs/animated-properties/value",
"title": "Noise"
},
"o": {
"$ref": "#/$defs/animated-properties/value",
"title": "Opacity"
},
"r": {
"$ref": "#/$defs/animated-properties/value",
"title": "Range"
},
"sr": {
"$ref": "#/$defs/animated-properties/value",
"title": "Source"
},
"ty": {
"const": 4,
"description": "Layer Type",
"title": "Type",
"type": "integer"
}
},
"required": [
"ty"
],
"type": "object"
}
],
"caniuse": "style-inner-glow",
"title": "Inner Glow",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 9b039d896c6016aaa1932ecd8f260e55f6b0b7ca | 2021-10-19T06:04:07 | docs/schema/text/text-document.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"f": {
"default": "",
"title": "Font Family",
"type": "string"
},
"fc": {
"items": {
"default": [
0,
0,
0
],
"type": "number"
},
"title": "Color",
"type": "array"
},
"j": {
"$ref": "#/$defs/constants/text-justify",
"default": 0,
"title": "Justify"
},
"lh": {
"title": "Line Height",
"type": "number"
},
"s": {
"default": 10,
"title": "Font Size",
"type": "number"
},
"sz": {
"items": {
"type": "number"
},
"title": "Wrap Size",
"type": "array"
},
"t": {
"default": "",
"title": "Text",
"type": "string"
}
},
"required": [],
"type": "object"
}
],
"description": "Note that for multi-line text, lines are separated by \\r",
"title": "Text Document",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 1b99ae41c2af3820681dd01de475a5ec47b158a9 | 2021-10-20T18:11:18 | docs/schema/animation/animation.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "#/$defs/helpers/visual-object"
},
{
"$ref": "#/$defs/animation/composition"
},
{
"properties": {
"assets": {
"items": {
"$ref": "#/$defs/assets/asset"
},
"title": "Assets",
"type": "array"
},
"chars": {
"description": "Data defining text characters as lottie shapes",
"items": {
"$ref": "#/$defs/text/character-data"
},
"title": "Chars",
"type": "array"
},
"ddd": {
"$ref": "#/$defs/types/int-boolean",
"default": 0,
"title": "Threedimensional"
},
"fonts": {
"$ref": "#/$defs/text/font-list",
"title": "Fonts"
},
"fr": {
"default": 60,
"description": "Framerate in frames per second",
"title": "Framerate",
"type": "number"
},
"h": {
"default": 512,
"title": "Height of the animation",
"type": "integer"
},
"ip": {
"default": 0,
"description": "\"In Point\", which frame the animation starts at (usually 0)",
"title": "In Point",
"type": "number"
},
"meta": {
"$ref": "#/$defs/animation/metadata",
"description": "Document metadata"
},
"op": {
"default": 60,
"description": "\"Out Point\", which frame the animation stops/loops at, which makes this the duration in frames when `ip` is 0",
"title": "Out Point",
"type": "number"
},
"v": {
"default": "5.5.2",
"title": "Version",
"type": "string"
},
"w": {
"default": 512,
"title": "Width of the animation",
"type": "integer"
}
},
"required": [
"w",
"h",
"fr",
"layers",
"op",
"ip"
],
"type": "object"
}
],
"description": "Top level object, describing the animation",
"title": "Animation",
"type": "object"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 60369b88e3c4533a96311eb3a2261405623d9653 | 2022-04-10T05:27:44 | docs/schema/constants/blend-mode.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Layer and shape blend mode",
"oneOf": [
{
"const": 0,
"title": "Normal"
},
{
"const": 1,
"title": "Multiply"
},
{
"const": 2,
"title": "Screen"
},
{
"const": 3,
"title": "Overlay"
},
{
"const": 4,
"title": "Darken"
},
{
"const": 5,
"title": "Lighten"
},
{
"const": 6,
"title": "Color Dodge"
},
{
"const": 7,
"title": "Color Burn"
},
{
"const": 8,
"title": "Hard Light"
},
{
"const": 9,
"title": "Soft Light"
},
{
"const": 10,
"title": "Difference"
},
{
"const": 11,
"title": "Exclusion"
},
{
"const": 12,
"title": "Hue"
},
{
"const": 13,
"title": "Saturation"
},
{
"const": 14,
"title": "Color"
},
{
"const": 15,
"title": "Luminosity"
}
],
"title": "BlendMode",
"type": "integer"
} | CC-BY-4.0 | en |
LottieFiles/lottie-docs | 837607e8c9b559b972ec0a23ff635fd5a5c59aa9 | 2021-10-18T11:25:08 | docs/schema/text/text-document.json | 43 | 2024-05-27T04:43:41.687416Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"properties": {
"f": {
"default": "",
"title": "Font Family",
"type": "string"
},
"fc": {
"item": {
"default": [
0,
0,
0
],
"type": "number"
},
"title": "Color",
"type": "array"
},
"j": {
"$ref": "#/constants/text-justify",
"default": 0,
"title": "Justify"
},
"lh": {
"title": "Line Height",
"type": "number"
},
"s": {
"default": 10,
"title": "Font Size",
"type": "number"
},
"sz": {
"item": {
"type": "number"
},
"title": "Wrap Size",
"type": "array"
},
"t": {
"default": "",
"title": "Text",
"type": "string"
}
},
"required": [],
"type": "object"
}
],
"description": "@see http://docs.aenhancers.com/other/textdocument/\n\nNote that for multi-line text, lines are separated by \\r",
"title": "Text Document",
"type": "object"
} | CC-BY-4.0 | en |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.