> For the complete documentation index, see [llms.txt](https://docs.sportradar.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportradar.com/table-tennis/table-tennis-multisport/objects/team-squad.md).

# Team (Squad)

#### Properties for teams:

<table data-header-hidden><thead><tr><th width="167">Property</th><th>Description</th></tr></thead><tbody><tr><td>id<br><em><mark style="color:blue;">uuid</mark></em></td><td>Unique id of a team</td></tr><tr><td>name<br><em><mark style="color:blue;">string</mark></em></td><td>Team's name - Name of the players playing in a team<br>Example: POLCANOVA Sofia/SZOCS Bernadette</td></tr><tr><td>club<br><a href="#properties-for-club-object"><em><mark style="color:blue;">club[]</mark></em></a></td><td>Team's name - Name of the players playing in a team<br>Example: POLCANOVA Sofia/SZOCS Bernadette of WANG Chuqin (121558)</td></tr><tr><td>category<br><a href="/pages/yvGfBS8mHPVWRR1TklhD"><em><mark style="color:blue;">category[]</mark></em></a></td><td>Team's category<br>Example: Men, Women, Youth</td></tr><tr><td>homeTeam<br><em><mark style="color:blue;">boolean</mark></em></td><td>Indicates whether the team is playing at home or away<br>Example: true, false</td></tr></tbody></table>

Example:

```
"teams": [
    {
      "id": "308a69ec-6774-4f89-9095-af5e18f53a6e",
      "name": "POLCANOVA Sofia/SZOCS Bernadette",
      "club": {
        "id": "b996540a-7ca1-4008-b464-e85d2e879d5c",
        "name": "POLCANOVA Sofia/SZOCS Bernadette"
      },
      "category": {
        "id": 2,
        "name": "Women"
      },
      "homeTeam": true
    }
```

#### Properties for club object

<table data-header-hidden><thead><tr><th width="167">Property</th><th>Description</th></tr></thead><tbody><tr><td>id<br><em><mark style="color:blue;">uuid</mark></em></td><td>The ID of the club.</td></tr><tr><td>name<br><em><mark style="color:blue;">string</mark></em></td><td>The <a data-footnote-ref href="#user-content-fn-1">name</a>s of player or players in that team.</td></tr></tbody></table>

```
"club": {
        "id": "b996540a-7ca1-4008-b464-e85d2e879d5c",
        "name": "POLCANOVA Sofia/SZOCS Bernadette"
      }
```

[^1]: Examples are\
    \ <mark style="color:orange;">Israel League Cup</mark>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sportradar.com/table-tennis/table-tennis-multisport/objects/team-squad.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
