action sportsdata_player_details_by_player { label: "Player Details by Player" provider: sportsdata method: GET path: "/{format}/Player/{playerid}" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["XML", "JSON"] } playerid: { type: "string" } } required: ["format", "playerid"] additionalProperties: false } output: { properties: { BirthCity: { type: "string" } BirthState: { type: "string" } Class: { type: "string" } FantasyAlarmPlayerID: { type: "integer" } FirstName: { type: "string" } GlobalTeamID: { type: "integer" } Height: { type: "integer" } HighSchool: { type: "string" } InjuryBodyPart: { type: "string" } InjuryNotes: { type: "string" } InjuryStartDate: { type: "string" } InjuryStatus: { type: "string" } Jersey: { type: "integer" } LastName: { type: "string" } PlayerID: { type: "integer" } Position: { type: "string" } RotoWirePlayerID: { type: "integer" } RotoworldPlayerID: { type: "integer" } SportRadarPlayerID: { type: "string" } Team: { type: "string" } TeamID: { type: "integer" } Weight: { type: "integer" } } } }