Skip to main content

TournamentCourse

Type representing the course details for a tournament. Yardage changes for each round are found in the RoundCourses field

type TournamentCourse {
number: Int
name: String
city: String
roundCourses: [RoundCourse]
frontPar: Int
backPar: Int
par: Int
frontYards: Int
frontMetres: Int
backYards: Int
backMetres: Int
totalYards: Int
totalMetres: Int
holes: [Hole]
}

Fields

TournamentCourse.number ● Int scalar

The number of the course.

TournamentCourse.name ● String scalar

The name of the course.

TournamentCourse.city ● String scalar

The city where the course is located.

TournamentCourse.roundCourses ● [RoundCourse] list object

The list of round courses associated with the tournament course.

TournamentCourse.frontPar ● Int scalar

The par for the front nine holes of the course.

TournamentCourse.backPar ● Int scalar

The par for the back nine holes of the course.

TournamentCourse.par ● Int scalar

The total par for all holes of the course.

TournamentCourse.frontYards ● Int scalar

The total yards for the front nine holes of the course.

TournamentCourse.frontMetres ● Int scalar

The total metres for the front nine holes of the course.

TournamentCourse.backYards ● Int scalar

The total yards for the back nine holes of the course.

TournamentCourse.backMetres ● Int scalar

The total metres for the back nine holes of the course.

TournamentCourse.totalYards ● Int scalar

The total yards for all holes of the course.

TournamentCourse.totalMetres ● Int scalar

The total metres for all holes of the course.

TournamentCourse.holes ● [Hole] list object

The list of holes on the course.

Member of

Tournament object