# Season

## Properties

<table data-header-hidden><thead><tr><th width="178">Property</th><th>Description</th></tr></thead><tbody><tr><td>id<br><em><mark style="color:orange;">uuid</mark></em></td><td>Unique id for a specific snooker season.</td></tr><tr><td>name<br><em><mark style="color:orange;">string</mark></em></td><td>Name of the season.</td></tr><tr><td>startDateUTC<br><em><mark style="color:orange;">timestamp</mark></em></td><td><a data-footnote-ref href="#user-content-fn-1">Timestamp</a> of when the season is scheduled to start, in RFC 3339 format.</td></tr><tr><td>endDateUTC<br><em><mark style="color:orange;">timestamp</mark></em></td><td><a data-footnote-ref href="#user-content-fn-2">Timestamp</a> of when the season is scheduled to end, in RFC 3339 format.</td></tr><tr><td>competition<br><a href="competition"><em><mark style="color:orange;">Competition</mark></em></a> <em><mark style="color:orange;">[]</mark></em></td><td>A list of snooker tournaments played within the season.</td></tr><tr><td>stages<br><a href="stage"><em><mark style="color:orange;">Stage</mark></em></a> <em><mark style="color:orange;">[]</mark></em></td><td>Location details of each tournaments.</td></tr></tbody></table>

{% code overflow="wrap" %}

```json
{
    "id": "d0d66aa5-a0af-496a-8bf2-56744eb85748",
    "name": "2023/2024",
    "startDateUTC": "2023-06-15T12:00:00",
    "endDateUTC": "2024-05-31T12:00:00",
    "competition": {
            "id": "395056cd-0552-495e-be0a-f3dc33543860",
            "name": "BetVictor Championship League Snooker 2023",
            "type": "Official",
            "category": {
                "id": 34,
                "name": "Unknown"
            },
            "location": {
                "name": "Leicester",
                "country": {
                    "name": "England"
                },
                "continent": {
                    "name": "Europe"
                }
            },
            "commentCount": 0
        },
    "stages": [
            {
                "id": "c1ff5198-d901-4ee0-a690-deea1405eec5",
                "name": "Main",
                "startDateUTC": "2023-06-26T12:00:00",
                "endDateUTC": "2023-07-14T12:00:00",
                "rounds": [
                    {
                        "id": "bc4a56f7-d719-4438-9d5b-e76fbc14342c",
                        "name": "Stage One/week 1",
                        "startDateUTC": "2023-06-26T12:00:00",
                        "endDateUTC": "2023-06-26T12:00:00"
                    },
                    {
                        "id": "afe5834f-8836-488a-9351-ac8db74b374b",
                        "name": "Stage One/week 2",
                        "startDateUTC": "2023-06-26T12:00:00",
                        "endDateUTC": "2023-06-26T12:00:00"
                    },
                    {
                        "id": "d1b46422-93ff-4e45-98b5-d8b74fef174d",
                        "name": "Stage One/week 3",
                        "startDateUTC": "2023-06-26T12:00:00",
                        "endDateUTC": "2023-06-26T12:00:00"
                    }
                ],
                "groups": []
            }
    ]
}
```

{% endcode %}

[^1]: Examples for January 25th, 2020

    6:25:34pm\
    \
    Pacific Standard Time:

    <mark style="color:orange;">UTC: 2020-01-26T02:25:34Z</mark>

    \
    Pacific Standard Time with UTC offset:

    <mark style="color:orange;">2020-01-25T18:25:34-08:00</mark>

[^2]: Examples for January 25th, 2020

    6:25:34pm\
    \
    Pacific Standard Time:

    <mark style="color:orange;">UTC: 2020-01-26T02:25:34Z</mark>

    \
    Pacific Standard Time with UTC offset:

    2020-01-25T18:25:34-08:00
