# Player (Squad)

## Properties

<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 player id</td></tr><tr><td>fullName<br><em><mark style="color:blue;">string</mark></em></td><td>Full name of the player</td></tr><tr><td>firstName<br><em><mark style="color:blue;">string</mark></em></td><td>First name</td></tr><tr><td>lastName<br><em><mark style="color:blue;">string</mark></em></td><td>Last name</td></tr><tr><td>shirtNumber<br><em><mark style="color:blue;">string</mark></em></td><td>Shirt number</td></tr><tr><td>position<br><em><mark style="color:blue;">string</mark></em></td><td>Playing position</td></tr><tr><td>location<br><a href="broken-reference"><em><mark style="color:blue;">Location</mark></em></a></td><td>Origin of player</td></tr><tr><td>verified<br><em><mark style="color:blue;">string</mark></em></td><td>Indicates whether a player's information has been verified<br>Example: true or false</td></tr></tbody></table>

```json
{
    "id": "6f549898-4550-4d90-a66d-80c4fd69fde5",
    "fullName": "Arturas Valeika",
    "firstName": "Arturas",
    "lastName": "Valeika",
    "shirtNumber": "7",
    "position": "Goalkeeper",
    "location": {
         "name": "Lithuania",
         "country": {},
         "continent": {
             "name": "Europe"
                }
            },
    "verified": true
 }
```
