diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2011-10-20 18:38:39 (GMT) |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2011-10-20 18:38:39 (GMT) |
commit | 860f4ad30e886d465fe1820d1dd8c18353261fcb (patch) | |
tree | 6c2f59d00ecf03e10a64b90fa2d0dfa1e5161cdf | |
parent | 75e02898119d901dc1fe36edcd88856ccfc6ef69 (diff) | |
download | libkolabxml-860f4ad30e886d465fe1820d1dd8c18353261fcb.tar.gz |
use floats for latitue/longitude
-rw-r--r-- | schemas/contact.xsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/schemas/contact.xsd b/schemas/contact.xsd index aaa3c25..09a8443 100644 --- a/schemas/contact.xsd +++ b/schemas/contact.xsd @@ -113,8 +113,8 @@ <xs:element name="preferred-address" type="xs:string"> </xs:element> - <xs:element name="latitude" type="xs:string"></xs:element> - <xs:element name="longitude" type="xs:string"></xs:element> + <xs:element name="latitude" type="xs:float"></xs:element> + <xs:element name="longitude" type="xs:float"></xs:element> </xs:sequence> </xs:extension> </xs:complexContent> |