|     SAE J2735-Draft-Rev26 [issued: 09-18-08]   -  117 -  This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.  7.35 Data Element: DE_Collision Event Flag  (remove now, use event flags)  Use:  A data element used to denote the type of  probable event relating to a possible Intersection Collision.    ASN.1 Representation:    CollisionEventFlag ::= ENUMERATED {       unknown                (0),        intersectionViolation  (1), -- Need other values from committte here        itemThree              (2),        itemFour               (3)       }  XML Representation:    <xs:simpleType name="CollisionEventFlag" >        <xs:annotation>           <xs:appinfo>              unknown (0)              intersectionViolation (1) -- Need other values from committte here              itemThree (2)              itemFour (3)           </xs:appinfo>        </xs:annotation>        <xs:union>           <xs:simpleType>              <xs:restriction base="xs:unsignedInt">                 <xs:minInclusive value="0"/>                 <xs:maxInclusive value="3"/>              </xs:restriction>           </xs:simpleType>           <xs:simpleType>              <xs:restriction base="xs:string">                 <xs:enumeration value="unknown"/>                 <xs:enumeration value="intersectionViolation"/>                 <xs:enumeration value="itemThree"/>                 <xs:enumeration value="itemFour"/>              </xs:restriction>           </xs:simpleType >        </xs:union>  </xs:simpleType>   In addition, this item may be used by data structures in other ITS standards.  Remarks:  Note:  Is this item now overcome by the event flag item (the one that relates to passing the stop  line), can we remove it and use that?  Need to confirm with safety sub-committee first but is seems likely.    7.36 Data Element: DE_ColorState  Use:  An enumerated state representing what the color and flashing state of a signal light is (regardless of  any directional indication or arrow that may also be associated with that light).  Typically used in an array  to represent signal lights.   ASN.1 Representation:    ColorState ::= ENUMERATED {     dark            (0),  -- (B0000) Dark, lights inactive      green           (1),  -- (B0001)       green-flashing  (9),  -- (B1001)       yellow          (2),  -- (B0010)       yellow-flashing (10), -- (B1010)       red             (4),  -- (B0100)       red-flashing    (12)  -- (B1100)       } -- a 4 bit encoded value       -- note that above may be combined        -- to create additonal patterns  |