Properties
| Name | Type | Description |
|---|---|---|
| id | string | Configuration identifier |
| name | string | Configuration name |
| scenarioId | string | Associated scenario ID |
| executableId | string | Associated executable ID |
| parameterBindings | array | |
| inputArtifactBindings | array | |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Configuration",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Configuration identifier"
},
"name": {
"type": "string",
"description": "Configuration name"
},
"scenarioId": {
"type": "string",
"description": "Associated scenario ID"
},
"executableId": {
"type": "string",
"description": "Associated executable ID"
},
"parameterBindings": {
"type": "array"
},
"inputArtifactBindings": {
"type": "array"
},
"createdAt": {
"type": "string"
}
}
}