blob: 8b0d50d9b0056f122e70bf67d0598506da2550d1 [file] [log] [blame]
{
"$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"
},
"d": {
"title": "Direction",
"description": "After Effect's Direction. Direction how the shape is drawn. Used for trim path for example.",
"type": "number"
},
"ty": {
"title": "Type",
"description": "Shape content type. Value: sr",
"type": "string"
},
"p": {
"title": "Position",
"description": "Star's position",
"oneOf": [
{
"$ref": "#/properties/multiDimensional"
},
{
"$ref": "#/properties/multiDimensionalKeyframed"
}
],
"type": "object"
},
"ir": {
"title": "Outer Radius",
"description": "Star's outer radius.",
"oneOf": [
{
"$ref": "#/properties/Value"
},
{
"$ref": "#/properties/valueKeyframed"
}
],
"type": "object"
},
"is": {
"title": "Outer Roundness",
"description": "Star's outer roundness.",
"oneOf": [
{
"$ref": "#/properties/Value"
},
{
"$ref": "#/properties/valueKeyframed"
}
],
"type": "object"
},
"r": {
"title": "Rotation",
"description": "Star's rotation.",
"oneOf": [
{
"$ref": "#/properties/Value"
},
{
"$ref": "#/properties/valueKeyframed"
}
],
"type": "object"
},
"pt": {
"title": "Points",
"description": "Star's number of points.",
"oneOf": [
{
"$ref": "#/properties/Value"
},
{
"$ref": "#/properties/valueKeyframed"
}
],
"type": "object"
},
"sy": {
"title": "Star Type",
"description": "Star's type. Polygon or Star.",
"type": "object",
"oneOf": [
{
"standsFor": "Star",
"value": 1
},
{
"standsFor": "Polygon",
"value": 2
}
]
}
}
}