mirror of
https://github.com/iptv-org/api.git
synced 2025-05-12 01:50:06 -04:00
Added network field
This commit is contained in:
parent
afc2a602db
commit
47407b291d
3 changed files with 25075 additions and 25072 deletions
|
@ -14,6 +14,7 @@ https://iptv-org.github.io/api/channels.json
|
||||||
{
|
{
|
||||||
"id": "CNN.us",
|
"id": "CNN.us",
|
||||||
"name": "CNN",
|
"name": "CNN",
|
||||||
|
"network": "CNN",
|
||||||
"country": "US",
|
"country": "US",
|
||||||
"subdivision": null,
|
"subdivision": null,
|
||||||
"city": null,
|
"city": null,
|
||||||
|
@ -37,6 +38,7 @@ https://iptv-org.github.io/api/channels.json
|
||||||
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| id | Unique channel ID |
|
| id | Unique channel ID |
|
||||||
| name | Full name of the channel |
|
| 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)) |
|
| 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)) |
|
| 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 |
|
| city | Name of the city from which the broadcast is transmitted |
|
||||||
|
|
50142
database/channels.csv
50142
database/channels.csv
File diff suppressed because it is too large
Load diff
|
@ -17,7 +17,8 @@ const csv2jsonOptions = {
|
||||||
is_nsfw: boolParser,
|
is_nsfw: boolParser,
|
||||||
logo: nullable,
|
logo: nullable,
|
||||||
subdivision: nullable,
|
subdivision: nullable,
|
||||||
city: nullable
|
city: nullable,
|
||||||
|
network: nullable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue