Properties
| Name | Type | Description |
|---|---|---|
| configuration | object | Configuration parameters for the required input. |
| items | array | In case of a select, the items to choose from. |
| key | string | The value to provide in the result. |
| optional | boolean | True if this input is optional to provide. |
| type | string | The type of the required input. |
| value | string | The value can be pre-filled, if available. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubInputDetail",
"title": "SubInputDetail",
"properties": {
"configuration": {
"additionalProperties": {
"type": "string"
},
"description": "Configuration parameters for the required input.",
"type": "object"
},
"items": {
"description": "In case of a select, the items to choose from.",
"items": {
"$ref": "#/components/schemas/Item"
},
"type": "array"
},
"key": {
"description": "The value to provide in the result.",
"type": "string"
},
"optional": {
"description": "True if this input is optional to provide.",
"type": "boolean"
},
"type": {
"description": "The type of the required input.",
"type": "string"
},
"value": {
"description": "The value can be pre-filled, if available.",
"type": "string"
}
},
"type": "object"
}