Hi,
I am generating Scala code based on the JSON schema that allows me to read and write Plotly JSON. I picked the Violin (https://plot.ly/javascript/violin/) for my first test. In one of the examples we have data with the attribute:
points: 'none'
But the schema points
is an enumerated
that only has the values:
- “all”
- “outliers”
- “suspectedoutliers”
- false
So my question is: is this a schema error, example error or is “none” a valid input for any enumerate?
TIA