phadej / relaxed-json

Relaxed JSON is strict superset JSON, relaxing strictness of vanilla JSON
http://oleg.fi/relaxed-json/
Other
80 stars 8 forks source link

Numbers Separated by Dots #23

Open semireg opened 5 years ago

semireg commented 5 years ago

I've tested this using http://oleg.fi/relaxed-json/.

This is valid:

{
  'Date': 01.02
}

This is invalid:

{
  'Date': 01.02.03
}

Of course, this works:

{
  'Date': '01.02.03'
}

Thoughts on why an additional period and number causes an issue? Thank you!