I am interested in validating some JSON logic to check for a certain value is in place for for the first element in an array. I would like to achieve this via JSON schema if possible. For Example, I would like to check to see if the first element is "manager":
"employees": [
{
"manager": "Band35",
"name": "Tom"
},
{
"developer": "Band25",
"name": "Kelly"
},
{
"analyst": "Band25",
"name": "Jack"
}
]
}