File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 37673767 "position": {
37683768 "type": "number"
37693769 },
3770+ "estimatedMonthlyListeners": {
3771+ "description": "Latest published monthly audience estimate for the podcast, independent of the chart date and country.",
3772+ "type": [
3773+ "integer",
3774+ "null"
3775+ ],
3776+ "minimum": 0,
3777+ "maximum": 9007199254740991
3778+ },
37703779 "podcastOnChart": {
37713780 "type": "object",
37723781 "properties": {
38873896 },
38883897 "required": [
38893898 "position",
3899+ "estimatedMonthlyListeners",
38903900 "podcastOnChart",
38913901 "podenginePodcast"
38923902 ],
40844094 "position": {
40854095 "type": "number"
40864096 },
4097+ "estimatedMonthlyListeners": {
4098+ "description": "Latest published monthly audience estimate for the podcast, independent of the chart date and country.",
4099+ "type": [
4100+ "integer",
4101+ "null"
4102+ ],
4103+ "minimum": 0,
4104+ "maximum": 9007199254740991
4105+ },
40874106 "podcastOnChart": {
40884107 "type": "object",
40894108 "properties": {
42044223 },
42054224 "required": [
42064225 "position",
4226+ "estimatedMonthlyListeners",
42074227 "podcastOnChart",
42084228 "podenginePodcast"
42094229 ],
Original file line number Diff line number Diff line change @@ -589,6 +589,7 @@ class GetChartResponseChartPositionsItem(BaseModel):
589589 model_config = ConfigDict (populate_by_name = True )
590590
591591 position : float
592+ estimated_monthly_listeners : int | None = Field (alias = "estimatedMonthlyListeners" )
592593 podcast_on_chart : GetChartResponseChartPositionsItemPodcastOnChart = Field (alias = "podcastOnChart" )
593594 podengine_podcast : GetChartResponseChartPositionsItemPodenginePodcast | None = Field (alias = "podenginePodcast" )
594595
You can’t perform that action at this time.
0 commit comments