# Tournament

The tournament element provides information about the email tournament and contains 2 sub-elements which are:

* sport
* category

Here follows an example of the tournament element shown in the fixture end point.

```
<tournament id="sr:tournament:132" name="NBA">
            <sport id="sr:sport:2" name="Basketball"/>
            <category id="sr:category:15" name="USA" country_code="USA"/>
</tournament>
```

List of attributes in the tournament element:

| Attribute | Meaning                                                           | Possible values                                                       |
| --------- | ----------------------------------------------------------------- | --------------------------------------------------------------------- |
| id        | Unique id of the competition the fixture belongs in               | <p>String value, example:</p><ul><li>id="sr:tournament:132"</li></ul> |
| name      | Name of the tournament  (main competition) the fixture belongs in | <p>String value, example:</p><ul><li>name="NBA"</li></ul>             |

<br>

List of attributes in the sport sub-element:

| Attribute | Meaning                               | Possible values                                                 |
| --------- | ------------------------------------- | --------------------------------------------------------------- |
| id        | Unique id of the sport of the fixture | <p>String value, example:</p><ul><li>id="sr:sport:2"</li></ul>  |
| name      | Name of the sport                     | <p>String value, example:</p><ul><li>name="Basketball</li></ul> |

<br>

List of attributes in the category sub-element:

| Attribute     | Meaning                                                                                            | Possible values                                                    |
| ------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
| id            | Unique id of the category. The category addresses the country where the tournament is taking place | <p>String value, example:</p><ul><li>id="sr:category:19"</li></ul> |
| name          | Name of the category                                                                               | <p>String value, example:</p><ul><li>name="USA"</li></ul>          |
| country\_code | Code of the country for the category                                                               | <p>String value, example:</p><ul><li>country\_code="USA"</li></ul> |
