- Countries are identified with the ISO 3166-1 alpha-2 standard
- XW Identifies every country
1. All the world allowed with the exception of a specific set of countries (that is usually empty)
region_restriction: { allowed: [XW], blocked: [] }
This means you can display the lyrics in every country.region_restriction: { allowed: [XW], blocked: [US,CA] }
This means you can not display the lyrics in the USA and in Canada.
2. All the world is NOT allowed, with the exclusion of zero or few countries
region_restriction: { allowed: [], blocked: [XW] }
This means you can not display the lyrics in any country.region_restriction: { allowed: [IT], blocked: [XW] }
This means you can only display the lyrics in Italy.