The response data to validate
Type predicate indicating if the data is a valid AmbeedGetPmsSdsByAmsResponse
if (isAmbeedGetPmsSdsByAmsResponse(data)) {
console.log(data.value.sds_list["A491321"]["am"].url);
}
export function isAmbeedGetPmsSdsByAmsResponse(
data: unknown,
): data is AmbeedGetPmsSdsByAmsResponse {
return v.safeParse(ambeedGetPmsSdsByAmsResponseSchema, data).success;
}
Type guard to validate the
webapi/v1/getPmsSdsByAmsresponse shape — thevalue.sds_listmap of per-product (AM id) SDS documents keyed by SDS type.