<initial>
<initial>
Attributes
Name
Data type
Description
String
String
String
Notes
Example
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<grammar type="application/srgs+xml" root="ROOT" mode="voice">
<rule id="ROOT">
<one-of>
<item>
Dog
<tag>
name="Lassie";age="5";color="brown"
</tag>
</item>
<item>
Cat
<tag>
name="Garfield";age="7";color="orange"
</tag>
</item>
</one-of>
</rule>
</grammar>
<initial>
<prompt>
Say either dog or cat.
</prompt>
</initial>
<field name="name"/>
<field name="age"/>
<field name="color"/>
<filled>
<if cond="name=='Lassie'">
<prompt>
The dog's name is <value expr="name"/>.
He is <value expr="age"/> years old.
His fur color is <value expr="color"/>.
</prompt>
<elseif cond="name=='Garfield'"/>
<prompt>
The cat's name is <value expr="name"/>.
He is <value expr="age"/> years old.
His fur color is <value expr="color"/>.
</prompt>
<else/>
<prompt>
I did not understand you.
</prompt>
</if>
</filled>
</form>
</vxml>Child Tags
Parent Tags
Last updated