|
Newsletters
|
|
|
|
|
Voice XML Reference
Voice XML Reference
Bookmark this page
The vxml Element - <vxml>
Description: Top-level element in each VoiceXML document.
Example:
<?xml version="1.0"?>
<vxml version="1.0">
<meta name="author" content="John Doe"/>
<meta name="maintainer" content="hello-support@hi.example"/>
<var name="hi" expr="'Hello World!'"/>
<form>
<block>
<value expr="hi"/>
<goto next="#say_goodbye"/>
</block>
</form>
<form id="say_goodbye">
<block>
Goodbye!
</block>
</form>
</vxml>
| Attributes |
| Name |
Value |
Description |
| version |
float |
The version of VoiceXML of this document (required). The initial
version number is 1.0. |
| base |
URI |
The base URI. |
| lang |
PCDATA |
The language and local type for this document. |
| application |
URI |
The URI of this document's application root document, if any. |
Back to Tag Listing
|
|