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