![JSON Schema Diagram of /properties/input_components/items[0]](images/schema-12.png)
| Property Name | Type | Description |
|---|---|---|
| name | string | A String value |
| type | string | A String value |
| id | string | A String value |
| description | string | A String value |
| language | string | A String value |
| layouts | array | An Array value |
{
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"description": {
"type": "string"
},
"language": {
"type": "string"
},
"layouts": {
"type": "array"
}
},
"required": [
"name",
"type",
"id",
"description",
"language",
"layouts"
]
}