changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of stations returned",
+ "type": "number"
+ },
+ "stations": {
+ "description": "List of top-ranked radio stations",
+ "items": {
+ "properties": {
+ "bitrate": {
+ "description": "Bitrate in kbps",
+ "type": "number"
+ },
+ "codec": {
+ "description": "Audio codec used",
+ "type": "string"
+ },
+ "country": {
+ "description": "Country where station broadcasts",
+ "type": "string"
+ },
+ "language": {
+ "description": "Language of broadcast",
+ "type": "string"
+ },
+ "name": {
+ "description": "Station name",
+ "type": "string"
+ },
+ "tags": {
+ "description": "Genres/tags associated with station",
+ "type": "string"
+ },
+ "url": {
+ "description": "Station stream URL (resolved or fallback)",
+ "type": "string"
+ },
+ "votes": {
+ "description": "Popularity vote count",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "url",
+ "country",
+ "language",
+ "tags",
+ "votes",
+ "codec",
+ "bitrate"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "stations"
+ ],
+ "type": "object"
+}