Competition

Represents the competition details of an event to be played.

Properties for competition:

id uuid

Unique ID for this competition. Generated by IMG Arena.

name string

The competition's name.

type string

This allows a user to call the fixtures API by 'Official', 'Simulation' or 'Training'.

  1. Official

  2. Simulation

  3. Training

format format[]

The format of the match.

category category[]

The competition's category.

location location[]

The competition's location.

Example:

{
  "id": "0cfa1050-0935-468c-b237-5005b38e1091",
  "name": "ITTF World Championships Doha - Womens Doubles",
  "type": "Official",
  "category": {
    "id": 2,
    "name": "Women"
  },
  "format": {
    "id": 135,
    "name": "Doubles"
  },
  "location": {
    "name": "Doha",
    "country": {
      "name": "Qatar"
    },
    "continent": {
      "name": "Asia"
    }
  },
  "commentCount": 0
}

Properties for format

id integer

The ID of the format.

name string

The competition's name.

Example:

Last updated

Was this helpful?