![JSON Schema Diagram of /properties/apps/items[0]/properties/scripts/items[0]](images/schema-3.png)
| Schema 1 | A String value |
|---|---|
| Schema 2 | /properties/apps/items[0]/properties/scripts/items[0]/oneOf[1] |
{
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": true,
"properties": {
"input": {
"type": "string"
}
},
"required": [
"input"
]
}
]
}