When using the enumeration for labelOrientation, it yields an error.
"labelOrientation": "horizontal",
"labelOrientation": "vertical",

The Schema should have something like:
"labelOrientation": {
"type": "string",
"enum": [
"horizontal",
"vertical"
],
"title": "Orientation"
},
(Not sure if your convention is caps or lower, and not sure which value is 0 and which is 1!)