My flow is failing at the Switch.


The schema is below
{
"type": "array",
"items": {
"type": "object",
"properties": {
"ItemInternalId": {
"type": "string"
},
"Billing Account Number": {
"type": "string"
},
"Product Family": {
"type": "string"
},
"Tax_x003a_ Federal": {
"type": "string"
},
"Tax_x003a_ State": {
"type": "string"
},
"Tax_x003a_ City": {
"type": "string"
},
"Tax_x003a_ County": {
"type": "string"
},
"Tax_x003a_ Other": {
"type": "string"
},
"Tax_x003a_ VAT": {
"type": "string"
},
"@odata.etag": {
"type": "string"
}
},
"required": [
"@odata.etag",
"ItemInternalId",
"Billing Account Number",
"Product Family",
"Tax_x003a_ Federal",
"Tax_x003a_ State",
"Tax_x003a_ City",
"Tax_x003a_ County",
"Tax_x003a_ Other",
"Tax_x003a_ VAT"
]
}
}
And the error - which is listed 3x's.
[
{
"message": "Required properties are missing from object: Tax_x003a_ Federal, Tax_x003a_ State, Tax_x003a_ City, Tax_x003a_ County, Tax_x003a_ Other, Tax_x003a_ VAT.",
"lineNumber": 0,
"linePosition": 0,
"path": "[0]",
"value": [
"Tax_x003a_ Federal",
"Tax_x003a_ State",
"Tax_x003a_ City",
"Tax_x003a_ County",
"Tax_x003a_ Other",
"Tax_x003a_ VAT"
],
"schemaId": "#/items",
"errorType": "required",
"childErrors": []
},
Since the error shows the required field three times, do I also need to add required objects 3'xs?