View this PageEdit this PageAttachments to this PageHistory of this PageHomeRecent ChangesSearch the SwikiHelp Guide

USDL UPnP-specific Schema


<?xml version='1.0'?>
<schema xmlns='http://www.w3.org/2001/XMLSchema'
		targetNamespace='//edu.gatech.cc.realjin.umiddle.upnp'
		xmlns:upnp='//edu.gatech.cc.realjin.umiddle.upnp'
		elementFormDefault='qualified'
		version='1.0'>
		
    <element name='device'>
        <complexType>
            <attribute name='type' type='string'/> <!-- UPnP device type -->
        </complexType>
    </element>

    <element name='service'>
        <complexType>
            <attribute name='type' type='string'/> <!-- UPnP service type -->
        </complexType>
    </element>

    <element name='input'>
        <complexType>
            <sequence>
                <element name='argument' minOccurs="0" maxOccurs="1">
                    <complexType mixed='true'>
                        <attribute name='name' type='string'/>
                    </complexType>
                </element>
                <attribute name='action' type='string'/>
            </sequence>
        </complexType>
    </element>
	
    <element name='output'>
        <complexType>
            <sequence>
                <element name='state'>
                    <complexType mixed='true'>
                        <attribute name='name' type='string'/>
                    </complexType>
                </element>
            </sequence>
        </complexType>
    </element>
</schema>


Links to this Page