This entity represents the university associated with an athlete. This entity is returned as a nested object within the athlete object in the getAthlete API response.
Field | Type | Description |
name | varchar(256) | Name of the university |
city | varchar(128) | City where the university is located |
stateCode | varchar(2) | 2-letter state code where the university is located |
Example:
The universitySignedWith field appears inside the athlete object as shown below:
"universitySignedWith": {"name": "University of California-Los Angeles","city": "Los Angeles","stateCode": "CA"},