This entity stores all athletic performance data for a given athlete.
Each athlete can save performance data for multiple Athletics Categories.
Categories are sport-specific:
Example: A basketball player can save metrics like "Block Jump" or "Jump Height".
Example: A tennis player can save rankings such as "UTR", "WTN", or best times for runs like "5K".
For each Athletics Category, the type and format of data saved depends on the category itself (e.g., PB, Rating, Statistic, Game, Boolean).
Field | Type | Description |
name | Athletics Category (Category Name) | Name of the athletics category (e.g., |
data | Array of Athletics Category Data | List of values associated with this category (e.g., PB, DATE, LINK, RATING) |
Example Basketball Player
"athleticsCategories": [{"name": "Block Jump","data": [{"name": "PB","value": "9.75","type": "NUMBER"}]},{"name": "Jump Height","data": [{"name": "PB","value": "5.42","type": "NUMBER"},{"name": "DATE","value": "2025-09-18","type": "DATE"}]},{"name": "Bench Press","data": [{"name": "PB","value": "329.0","type": "NUMBER"}]},{"name": "Squat","data": [{"name": "PB","value": "306.0","type": "NUMBER"}]}],
Example Tennis Player
"athleticsCategories": [{"name": "UTR","data": [{"name": "RATING","value": "12.3","type": "NUMBER"},{"name": "DATE","value": "2025-09-17","type": "DATE"},{"name": "VERIFY_LINK","value": "https://www.utrsports.net/pages/play-tennis","type": "TEXT"}]},{"name": "5K","data": [{"name": "PB","value": "1136.0","type": "NUMBER"},{"name": "DATE","value": "2025-09-05","type": "DATE"}]},{"name": "10K","data": [{"name": "PB","value": "2303.0","type": "NUMBER"}]},{"name": "WTN","data": [{"name": "RATING","value": "23","type": "TEXT"},{"name": "DATE","value": "2025-09-20","type": "DATE"}]},{"name": "International Ranking/Rating U18","data": [{"name": "RATING","value": "56","type": "TEXT"}]}],