Participants

📄 Example JSON

This JSON object represents a typical response for a Participants following your schema.

{
  "participants": [
    {
      "id": 1,
      "name": "Manchester United",
      "position": 5,
      "location": "home"
    },
    {
      "id": 2,
      "name": "Liverpool",
      "position": 2,
      "location": "away"
    }
  ]
}

Field Descriptions

The table below breaks down the requirements and constraints for each field in the Participant schema.

FieldTypeDescription
idintegerUnique identifier for the participant.
namestringLocalized name of the team or competitor.
positionintegerThe team's current standing/rank in their league
locationstringIndicates if the team is hosting (home) or visiting (away).