-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsoa.json
98 lines (98 loc) · 2.36 KB
/
tsoa.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"entryFile": "src/app.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": ["src/**/controller.ts"],
"spec": {
"outputDirectory": "build",
"specVersion": 3,
"host": "apinext.collegefootballdata.com",
"name": "College Football Data API",
"description": "This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.",
"license": "",
"contact": {
"email": "[email protected]",
"name": "the developer"
},
"securityDefinitions": {
"apiKey": {
"type": "http",
"scheme": "bearer"
}
},
"rootSecurity": [
{
"apiKey": []
}
],
"tags": [
{
"name": "games",
"description": "Games scores and statistics"
},
{
"name": "drives",
"description": "Drive data"
},
{
"name": "plays",
"description": "Play by play data"
},
{
"name": "teams",
"description": "Team information"
},
{
"name": "conferences",
"description": "Conference information"
},
{
"name": "venues",
"description": "Information about venues"
},
{
"name": "coaches",
"description": "Information about coaches"
},
{
"name": "players",
"description": "Player information and data"
},
{
"name": "rankings",
"description": "Historical poll rankings"
},
{
"name": "betting",
"description": "Betting lines and data"
},
{
"name": "recruiting",
"description": "Recruiting rankings and data"
},
{
"name": "ratings",
"description": "Team rating data"
},
{
"name": "metrics",
"description": "Data relating to Predicted Points and other metrics"
},
{
"name": "stats",
"description": "Statistical data"
},
{
"name": "draft",
"description": "NFL Draft data"
},
{
"name": "adjustedMetrics",
"description": "Metrics adjusted for opponent strength and other factors"
}
]
},
"routes": {
"routesDir": "build",
"authenticationModule": "src/config/auth.ts"
}
}