Historical Roster Format

For those of you wanting to build rosters here is the format for the .json file.
Id: Player ID
RefId: Static Ref ID for players so that duplicates are not created
Ovr: Overall rating to derive other internal ratings
Sea: Season for the player
Rook: Rookie season for the player, this will drive which draft class the player is included in
First: First Name
Last: Last Name
Team: TeamID for this given Season
Coll: College for player
Num: Jersey #
DOB: Birth date
Hgt: Height in inches
Wgt: Weight
Pos: Position (QB,RB,FB,TE,WR,G,C,T,DT,DE,LB,CB,SS,FS,K,P)
Id: Player ID
RefId: Static Ref ID for players so that duplicates are not created
Ovr: Overall rating to derive other internal ratings
Sea: Season for the player
Rook: Rookie season for the player, this will drive which draft class the player is included in
First: First Name
Last: Last Name
Team: TeamID for this given Season
Coll: College for player
Num: Jersey #
DOB: Birth date
Hgt: Height in inches
Wgt: Weight
Pos: Position (QB,RB,FB,TE,WR,G,C,T,DT,DE,LB,CB,SS,FS,K,P)
- Code: Select all
{
"Players": [{
"Id": 1,
"RefId": "1",
"Ovr": 100,
"Sea": 2017,
"Rook": 2017,
"First": "John",
"Last": "Doe",
"Team": "0",
"Coll": "Harvard",
"Num": 62,
"DOB": "1/25/1987",
"Hgt": 76,
"Wgt": 315,
"Pos": "DT"
}
]
}