In the JSON schema at https://github.com/voc/schedule/blob/master/validator/json/schema.json, the time zone name is defined as "^[A-Z][a-z+]/[A-Z][a-z+]$". However, this definition does not allow the name "UTC", which is commonly used and understood in time zone names. (pretalx uses UTC in some cases.)
If the definition was something less restrictive like "[A-Z][A-Za-z/+]", we could start validating the JSON export generated by pretalx (cf pretalx/pretalx#1338) against this JSON schema, which would be pretty cool.
In the JSON schema at https://github.com/voc/schedule/blob/master/validator/json/schema.json, the time zone name is defined as
"^[A-Z][a-z+]/[A-Z][a-z+]$"
. However, this definition does not allow the name "UTC", which is commonly used and understood in time zone names. (pretalx uses UTC in some cases.)If the definition was something less restrictive like
"[A-Z][A-Za-z/+]"
, we could start validating the JSON export generated by pretalx (cf pretalx/pretalx#1338) against this JSON schema, which would be pretty cool.