![JSON Schema Diagram of /properties/apps/items[0]/properties/styles](images/property-styles.png)
| Array Index | Type | Description |
|---|---|---|
| 1-n | any | /properties/apps/items[0]/properties/styles/items[0] |
"styles": {
"type": "array",
"description": "Global styles to be included in the build.",
"additionalProperties": false,
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": true,
"properties": {
"input": {
"type": "string"
}
}
}
]
}
}