|
|
<?xml version="1.0"?>
|
|
|
<xs:schema xmlns="http://www.davinti.com.br/vitruvio/form/panel" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
|
targetNamespace="http://www.davinti.com.br/vitruvio/form/panel"
|
|
|
elementFormDefault="qualified">
|
|
|
|
|
|
<!-- Form para base -->
|
|
|
<xs:include schemaLocation="vitruvio-base-form.xsd" />
|
|
|
|
|
|
<!-- Formulario de Paineis , herdando o formulario base do sistema -->
|
|
|
<xs:complexType name="panel">
|
|
|
<xs:complexContent>
|
|
|
<xs:extension base="vitruvio-base-form">
|
|
|
<xs:attribute name="target" use="optional" >
|
|
|
<xs:simpleType>
|
|
|
<xs:restriction base="xs:string">
|
|
|
<xs:enumeration value="DEFAULT" />
|
|
|
<xs:enumeration value="NEW_WINDOW" />
|
|
|
</xs:restriction>
|
|
|
</xs:simpleType>
|
|
|
</xs:attribute>
|
|
|
</xs:extension>
|
|
|
</xs:complexContent>
|
|
|
</xs:complexType>
|
|
|
|
|
|
<xs:element name="panel-form">
|
|
|
<xs:complexType>
|
|
|
<xs:sequence>
|
|
|
<xs:element name="form" type="panel" minOccurs="1" maxOccurs="1" />
|
|
|
</xs:sequence>
|
|
|
</xs:complexType>
|
|
|
</xs:element>
|
|
|
|
|
|
</xs:schema>
|