--- title: "Cue Point Format" slug: "cue-point-format" updated: 2024-11-26T16:42:09Z published: 2024-11-26T16:42:09Z canonical: "help.tritondigital.com/cue-point-format" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.tritondigital.com/llms.txt > Use this file to discover all available pages before exploring further. # Cue Point Format A cue point is an XML message containing metadata for a stream. The information it contains is logically split into two categories: attributes and custom keys. The example cue point below includes the following six attributes: - cue_title - cue_time_duration - program_id - track_artist_name - track_album_name - track_album_publisher ```xml    Test Mount                        Summertime Sadness            234000            Test            Lana Del Rey            Summertime Sadness            EMI Music             ``` The **custom keys** in the above example are: **mount** (mount name), **type**, **timestamp**, and **cache**. They are mapped from the corresponding STWCue custom keys [described here](/v1/docs/cue-point-custom-keys). In order to map the parsed value into the cue point attribute, use the attribute name **as-is** in the key. For example, in the first processor in the [tutorial](/v1/docs/tutorial-creating-a-chain), the **cue_title** key is mapped to the **{title}** variable. That is, it will appear in the attributes of the cue point.