Properties
| Name | Type | Description |
|---|---|---|
| applicationName | string | |
| applicationType | string | |
| status | string | |
| version | string | |
| activeSessions | integer | |
| deployedAt | string | |
| description | string | |
| entryPoint | string | Starting element of the call flow |
| elements | array | List of element names in the application |
| mediaDirectory | string | Path to the application media files |
| grammarDirectory | string | Path to the application grammar files |
| configParameters | object | Application-level configuration parameters |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VxmlApplicationDetail",
"type": "object",
"properties": {
"applicationName": {
"type": "string"
},
"applicationType": {
"type": "string"
},
"status": {
"type": "string"
},
"version": {
"type": "string"
},
"activeSessions": {
"type": "integer"
},
"deployedAt": {
"type": "string"
},
"description": {
"type": "string"
},
"entryPoint": {
"type": "string",
"description": "Starting element of the call flow"
},
"elements": {
"type": "array",
"description": "List of element names in the application"
},
"mediaDirectory": {
"type": "string",
"description": "Path to the application media files"
},
"grammarDirectory": {
"type": "string",
"description": "Path to the application grammar files"
},
"configParameters": {
"type": "object",
"description": "Application-level configuration parameters"
}
}
}