action sportsdata_injured_players { label: "Injured Players" description: "This endpoint provides all currently injured college basketball players, along with injury details." provider: sportsdata method: GET path: "/{format}/InjuredPlayers" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["XML", "JSON"] } } required: ["format"] additionalProperties: false } output: { type: "array" items: { 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" } } } } }