<meta>

Specifies meta information about the current VoiceXML, SRGS XML, or SSML document.

Syntax

<meta
    content = "CDATA"
    name = "identifier"
    http-equiv = "identifier"
/>

Attributes

None of the <meta> attributes are required.

Attribute

Data Type

Required?

Default

Description

content

CDATA

yes

NA

Value of the metadata property.

http-equiv

identifier

no

NA

Name of the metadata property.

name

identifier

no

NA

Name of an HTTP response header.

Parents

<vxml>

Children

None.

Example

<?xml version="1.0"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml">
    <meta name="author" content=""/>
    <meta name="maintainer" content=""/>

    <form>
        <block>
            <prompt>A simple vxml test</prompt>
        </block>
    </form>
</vxml>