You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When sending the payload for NotifyReportRequest (with also the optional field report_data in the payload) it fails at the validation with the json schema. After some digging, I found out that the problem is due to the data type for ReportDataType.variable_attribute, that in the latets release of your code is defined as VariableAttributeType. However, it should be List[VariableAttributeType] because in the json schema for NotifyReportRequest the equivalent field variableAttribute is defined as array. As such, for easier usage by users of your library you should change the type as I suggested.
The text was updated successfully, but these errors were encountered:
Hello,
When sending the payload for NotifyReportRequest (with also the optional field report_data in the payload) it fails at the validation with the json schema. After some digging, I found out that the problem is due to the data type for ReportDataType.variable_attribute, that in the latets release of your code is defined as VariableAttributeType. However, it should be List[VariableAttributeType] because in the json schema for NotifyReportRequest the equivalent field variableAttribute is defined as array. As such, for easier usage by users of your library you should change the type as I suggested.
The text was updated successfully, but these errors were encountered: