-
Notifications
You must be signed in to change notification settings - Fork 26
Description
Dear Team,
I test CTK on Synergy for SDK and get schema validation error for all test cases that contains match function.

Last time I get success for all test cases.
After checked resources\schemas\sdk\0.9.0\MatchResponseSchema.json, I see match response was updated with additionalProperties:
"IRIS": {
"type": "object",
"additionalProperties": false,
"properties": {
"match": {
"type": "string"
},
"errors": {
"type": "array",
"items": {}
},
"analyticsInfo": {
"type": "object",
"additionalProperties": false
}
},
"required": [
"match",
"errors",
"analyticsInfo"
]
}
However, the specs say that:
Output Parameters
MatchDecision[] - Array of MatchDecision of the size same as the input parameter gallery. Each MatchDecision object will contain a list of decisions by biometric type. The decision information is a yes/no/error decision along with an analytics object which contain key value pairs that provide more insight into the decision.
It means we can add key-value into analyticsInfo object.
Please help me to check the specs and above error.
Thank you.