123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "type": "object",
- "properties": {
- "mn": {
- "title": "Match Name",
- "description": "After Effect's Match Name. Used for expressions.",
- "type": "string"
- },
- "nm": {
- "title": "Name",
- "description": "After Effect's Name. Used for expressions.",
- "type": "string"
- },
- "ty": {
- "title": "Type",
- "description": "Shape content type.",
- "type": "string",
- "const": "rp"
- },
- "c": {
- "title": "Copies",
- "description": "Number of Copies",
- "oneOf": [
- {
- "$ref": "#/properties/value"
- },
- {
- "$ref": "#/properties/valueKeyframed"
- }
- ],
- "type": "object",
- "default": {"a": 0, "k": 1}
- },
- "o": {
- "title": "Offset",
- "description": "Offset of Copies",
- "oneOf": [
- {
- "$ref": "#/properties/value"
- },
- {
- "$ref": "#/properties/valueKeyframed"
- }
- ],
- "type": "object",
- "default": {"a": 0, "k": 0}
- },
- "m": {
- "title": "Composite",
- "description": "Composite of copies",
- "$ref": "#/helpers/composite",
- "type": "number",
- "default": 1
- },
- "tr": {
- "title": "Transform",
- "description": "Transform values for each repeater copy",
- "$ref": "#/helpers/transform",
- "type": "object"
- }
- }
- }
|