Added network field

This commit is contained in:
Aleksandr Statciuk 2022-01-28 00:12:55 +03:00
parent afc2a602db
commit 47407b291d
3 changed files with 25075 additions and 25072 deletions

View file

@ -14,6 +14,7 @@ https://iptv-org.github.io/api/channels.json
{
"id": "CNN.us",
"name": "CNN",
"network": "CNN",
"country": "US",
"subdivision": null,
"city": null,
@ -37,6 +38,7 @@ https://iptv-org.github.io/api/channels.json
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| id | Unique channel ID |
| name | Full name of the channel |
| network | Name of the network operating the channel |
| country | Country code from which the broadcast is transmitted ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)) |
| subdivision | Code of the subdivision (e.g., provinces or states) from which the broadcast is transmitted ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)) |
| city | Name of the city from which the broadcast is transmitted |

File diff suppressed because it is too large Load diff

View file

@ -17,7 +17,8 @@ const csv2jsonOptions = {
is_nsfw: boolParser,
logo: nullable,
subdivision: nullable,
city: nullable
city: nullable,
network: nullable
}
}