Skip to content

Ngs Current Schedule Response

griddy / nfl / models / responses / ngs_current_schedule_response**

ngs_current_schedule_response

Response model for NGS current schedule endpoint.

Classes

NgsCurrentScheduleResponseTypedDict

Bases: TypedDict


              flowchart TD
              griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponseTypedDict[NgsCurrentScheduleResponseTypedDict]

              

              click griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponseTypedDict href "" "griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponseTypedDict"
            

Response from the NGS current schedule endpoint.

Attributes
season instance-attribute
season: NotRequired[int]

Season year

season_type instance-attribute
season_type: NotRequired[str]

Season type (REG, PRE, POST)

week instance-attribute
week: NotRequired[int]

Current week number

games instance-attribute
games: NotRequired[List[GameScheduleTypedDict]]

List of games in the current week

NgsCurrentScheduleResponse

Bases: BaseModel


              flowchart TD
              griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponse[NgsCurrentScheduleResponse]
              griddy.nfl.types.basemodel.BaseModel[BaseModel]

                              griddy.nfl.types.basemodel.BaseModel --> griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponse
                


              click griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponse href "" "griddy.nfl.models.responses.ngs_current_schedule_response.NgsCurrentScheduleResponse"
              click griddy.nfl.types.basemodel.BaseModel href "" "griddy.nfl.types.basemodel.BaseModel"
            

Response from the NGS current schedule endpoint.

Attributes
season class-attribute instance-attribute
season: Optional[int] = None

Season year

season_type class-attribute instance-attribute
season_type: Annotated[
    Optional[str], Field(alias="seasonType")
] = None

Season type (REG, PRE, POST)

week class-attribute instance-attribute
week: Optional[int] = None

Current week number

games class-attribute instance-attribute
games: Optional[List[GameSchedule]] = None

List of games in the current week