diagram | |||
children | numeroRecibo dataRecibo valorRecibo | ||
used by |
|
||
annotation |
|
||
source | <xs:complexType name="Recibo"> <xs:annotation> <xs:documentation>Recibo define o conjunto de elementos para identificar um recibo emitido.</xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="numeroRecibo" type="xs:int"> <xs:annotation> <xs:documentation>Número do recibo emitido.</xs:documentation> </xs:annotation> </xs:element> <xs:element name="dataRecibo" type="xs:date"> <xs:annotation> <xs:documentation>Data de emissão do recibo.</xs:documentation> </xs:annotation> </xs:element> <xs:element name="valorRecibo"> <xs:annotation> <xs:documentation>Valor total de emissão do recibo.</xs:documentation> </xs:annotation> <xs:simpleType> <xs:restriction base="xs:decimal"> <xs:fractionDigits value="2"/> </xs:restriction> </xs:simpleType> </xs:element> </xs:sequence> </xs:complexType> |
diagram | |||||
type | xs:int | ||||
properties |
|
||||
annotation |
|
||||
source | <xs:element name="numeroRecibo" type="xs:int"> <xs:annotation> <xs:documentation>Número do recibo emitido.</xs:documentation> </xs:annotation> </xs:element> |
diagram | |||||
type | xs:date | ||||
properties |
|
||||
annotation |
|
||||
source | <xs:element name="dataRecibo" type="xs:date"> <xs:annotation> <xs:documentation>Data de emissão do recibo.</xs:documentation> </xs:annotation> </xs:element> |
diagram | |||||
type | restriction of xs:decimal | ||||
properties |
|
||||
facets |
|
||||
annotation |
|
||||
source | <xs:element name="valorRecibo"> <xs:annotation> <xs:documentation>Valor total de emissão do recibo.</xs:documentation> </xs:annotation> <xs:simpleType> <xs:restriction base="xs:decimal"> <xs:fractionDigits value="2"/> </xs:restriction> </xs:simpleType> </xs:element> |