Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions content/en/docs/Endpoints/getinternetradiostations.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,22 @@ A [`subsonic-response`](../../responses/subsonic-response) element with a nested
"id": "1",
"name": "HBR1.com - Dream Factory",
"streamUrl": "http://ubuntu.hbr1.com:19800/ambient.aac",
"homepageUrl": "http://www.hbr1.com/"
"homepageUrl": "http://www.hbr1.com/",
"coverArt": "ir-1"
},
{
"id": "2",
"name": "HBR1.com - I.D.M. Tranceponder",
"streamUrl": "http://ubuntu.hbr1.com:19800/trance.ogg",
"homepageUrl": "http://www.hbr1.com/"
"homepageUrl": "http://www.hbr1.com/",
"coverArt": "ir-2"
},
{
"id": "3",
"name": "4ZZZ Community Radio",
"streamUrl": "https://stream.4zzz.org.au:9200/4zzz",
"homepageUrl": "https://4zzzfm.org.au"
"homepageUrl": "https://4zzzfm.org.au",
"coverArt": "ir-3"
}
]
}
Expand Down
4 changes: 3 additions & 1 deletion content/en/docs/Responses/internetRadioStation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ description: >
"id": "2",
"name": "HBR1.com - I.D.M. Tranceponder",
"streamUrl": "http://ubuntu.hbr1.com:19800/trance.ogg",
"homepageUrl": "http://www.hbr1.com/"
"homepageUrl": "http://www.hbr1.com/",
"coverArt": "ir-2"
}
{{< /tab >}}
{{< tab header="Subsonic" lang="json" >}}
Expand All @@ -31,3 +32,4 @@ description: >
| `name` | `string` | **Yes** | | The name |
| `streamUrl` | `string` | **Yes**| | The radio url |
| `homePageUrl` | `string` | No | | Genre name |
| `coverArt` | `string` | No | **Yes** | The cover art id. |
9 changes: 6 additions & 3 deletions content/en/docs/Responses/internetRadioStations.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,22 @@ description: >
"id": "1",
"name": "HBR1.com - Dream Factory",
"streamUrl": "http://ubuntu.hbr1.com:19800/ambient.aac",
"homepageUrl": "http://www.hbr1.com/"
"homepageUrl": "http://www.hbr1.com/",
"coverArt": "ir-1"
},
{
"id": "2",
"name": "HBR1.com - I.D.M. Tranceponder",
"streamUrl": "http://ubuntu.hbr1.com:19800/trance.ogg",
"homepageUrl": "http://www.hbr1.com/"
"homepageUrl": "http://www.hbr1.com/",
"coverArt": "ir-2"
},
{
"id": "3",
"name": "4ZZZ Community Radio",
"streamUrl": "https://stream.4zzz.org.au:9200/4zzz",
"homepageUrl": "https://4zzzfm.org.au"
"homepageUrl": "https://4zzzfm.org.au",
"coverArt": "ir-3"
}
]
}
Expand Down
4 changes: 4 additions & 0 deletions openapi/schemas/InternetRadioStation.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"homePageUrl": {
"type": "string",
"description": "Genre name"
},
"coverArt": {
"type": "string",
"description": "The cover art id."
}
},
"required": [
Expand Down
Loading