1*7c568831SAndroid Build Coastguard Worker# TODO: Add more language elements 2*7c568831SAndroid Build Coastguard Worker 3*7c568831SAndroid Build Coastguard Workerxs_annotation="<xs:annotation></xs:annotation>" 4*7c568831SAndroid Build Coastguard Worker 5*7c568831SAndroid Build Coastguard Workerxs_attribute="<xs:attribute name='a'></xs:attribute>" 6*7c568831SAndroid Build Coastguard Workerxs_attribute_required="<xs:attribute name='a' use='required'></xs:attribute>" 7*7c568831SAndroid Build Coastguard Workerxs_element="<xs:element name='e'></xs:element>" 8*7c568831SAndroid Build Coastguard Worker 9*7c568831SAndroid Build Coastguard Worker# Primitive datatypes 10*7c568831SAndroid Build Coastguard Workertype_string=" type='xs:string'" 11*7c568831SAndroid Build Coastguard Workertype_boolean=" type='xs:boolean'" 12*7c568831SAndroid Build Coastguard Workertype_decimal=" type='xs:decimal'" 13*7c568831SAndroid Build Coastguard Workertype_float=" type='xs:float'" 14*7c568831SAndroid Build Coastguard Workertype_double=" type='xs:double'" 15*7c568831SAndroid Build Coastguard Workertype_date_time=" type='xs:dateTime'" 16*7c568831SAndroid Build Coastguard Workertype_time=" type='xs:time'" 17*7c568831SAndroid Build Coastguard Workertype_date=" type='xs:date'" 18*7c568831SAndroid Build Coastguard Workertype_g_year_month=" type='xs:gYearMonth'" 19*7c568831SAndroid Build Coastguard Workertype_g_year=" type='xs:gYear'" 20*7c568831SAndroid Build Coastguard Workertype_g_month_day=" type='xs:gMonthDay'" 21*7c568831SAndroid Build Coastguard Workertype_g_day=" type='xs:gDay'" 22*7c568831SAndroid Build Coastguard Workertype_g_month=" type='xs:gMonth'" 23*7c568831SAndroid Build Coastguard Workertype_hex_binary=" type='xs:hexBinary'" 24*7c568831SAndroid Build Coastguard Workertype_base64_binary=" type='xs:base64Binary'" 25*7c568831SAndroid Build Coastguard Workertype_any_uri=" type='xs:anyURI'" 26*7c568831SAndroid Build Coastguard Workertype_qname=" type='xs:QName'" 27*7c568831SAndroid Build Coastguard Workertype_notation=" type='xs:NOTATION'" 28*7c568831SAndroid Build Coastguard Worker 29*7c568831SAndroid Build Coastguard Worker# Occurs 30*7c568831SAndroid Build Coastguard Workeroccurs_min=" minOccurs='1'" 31*7c568831SAndroid Build Coastguard Workeroccurs_max=" maxOccurs='9'" 32*7c568831SAndroid Build Coastguard Workeroccurs_max_unbounded=" maxOccurs='unbounded'" 33*7c568831SAndroid Build Coastguard Worker 34*7c568831SAndroid Build Coastguard Worker# Simple type 35*7c568831SAndroid Build Coastguard Workerxs_restriction_integer="<xs:simpleType><xs:restriction base='xs:integer'></xs:restriction></xs:simpleType>" 36*7c568831SAndroid Build Coastguard Workerxs_restriction_string="<xs:simpleType><xs:restriction base='xs:string'></xs:restriction></xs:simpleType>" 37*7c568831SAndroid Build Coastguard Workerxs_list="<xs:simpleType><xs:list></xs:list></xs:simpleType>" 38*7c568831SAndroid Build Coastguard Workerxs_union="<xs:simpleType><xs:union></xs:union></xs:simpleType>" 39*7c568831SAndroid Build Coastguard Worker 40*7c568831SAndroid Build Coastguard Worker# Restrictions 41*7c568831SAndroid Build Coastguard Workerxs_min_exclusive="<xs:minExclusive value='0'/>" 42*7c568831SAndroid Build Coastguard Workerxs_min_inclusive="<xs:minInclusive value='0'/>" 43*7c568831SAndroid Build Coastguard Workerxs_max_exclusive="<xs:maxExclusive value='9'/>" 44*7c568831SAndroid Build Coastguard Workerxs_max_inclusive="<xs:maxInclusive value='9'/>" 45*7c568831SAndroid Build Coastguard Workerxs_total_digits="<xs:totalDigits value='3'/>" 46*7c568831SAndroid Build Coastguard Workerxs_fraction_digits="<xs:fractionDigits value='3'/>" 47*7c568831SAndroid Build Coastguard Workerxs_length="<xs:length value='3'/>" 48*7c568831SAndroid Build Coastguard Workerxs_min_length="<xs:minLength value='3'/>" 49*7c568831SAndroid Build Coastguard Workerxs_max_length="<xs:maxLength value='3'/>" 50*7c568831SAndroid Build Coastguard Workerxs_enumeration="<xs:enumeration value='a'/>" 51*7c568831SAndroid Build Coastguard Workerxs_white_space_collapse="<xs:whiteSpace value='collapse'/>" 52*7c568831SAndroid Build Coastguard Workerxs_white_space_preserve="<xs:whiteSpace value='preserve'/>" 53*7c568831SAndroid Build Coastguard Workerxs_white_space_replace="<xs:whiteSpace value='replace'/>" 54*7c568831SAndroid Build Coastguard Workerxs_pattern="<xs:pattern value='a'/>" 55*7c568831SAndroid Build Coastguard Worker 56