<metadata>

Container in which information about the current VoiceXML, SRGS XML, or SSML document is placed, using a metadata schema.

Syntax

<metadata/>

Attributes

None.

Parents

<grammar>, <prompt>, <vxml>

Children

None.

Example

<?xml version="1.0" encoding="UTF-8"?> 
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.w3.org/2001/vxml 
    http://www.w3.org/TR/voicexml20/vxml.xsd"> 
    <metadata>
        <rdf:RDF
            xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
            xmlns:rdfs = "http://www.w3.org/TR/1999/PR-rdf-schema-19990303#"
            xmlns:dc = "http://purl.org/metadata/dublin_core#">
            <!-- Metadata about the VoiceXML document -->
            <rdf:Description about="http://www.example.com/meta.vxml"
                dc:Title="Directory Enquiry Service"
                dc:Description="Directory Enquiry Service for London in VoiceXML"
                dc:Publisher="W3C"
                dc:Language="en"
                dc:Date="2002-02-12"
                dc:Rights="Copyright 2002 John Smith"
                dc:Format="application/voicexml+xml" >                
                <dc:Creator>
                    <rdf:Seq ID="CreatorsAlphabeticalBySurname">
                        <rdf:li>Jackie Crystal</rdf:li>
                        <rdf:li>William Lee</rdf:li>
                    </rdf:Seq>
                </dc:Creator>
        </rdf:Description>
        </rdf:RDF>
    </metadata>
    <form>
        <block>  
            <prompt>Hello</prompt> 
        </block>
    </form>  
</vxml>