From 94d37637d9fd7b0c83028cd664d3af35f9e9f825 Mon Sep 17 00:00:00 2001 From: Paolo Di Tommaso Date: Wed, 11 Sep 2024 15:03:05 +0200 Subject: [PATCH] Update scan model (#637) Signed-off-by: Paolo Di Tommaso Co-authored-by: Munish Chouhan --- typespec/models/WaveScanRecord.tsp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typespec/models/WaveScanRecord.tsp b/typespec/models/WaveScanRecord.tsp index e74e56cf9..f5f4d9158 100644 --- a/typespec/models/WaveScanRecord.tsp +++ b/typespec/models/WaveScanRecord.tsp @@ -4,8 +4,9 @@ import "./Vulnerability.tsp"; model WaveScanRecord { buildId: string; duration: int64; + containerImage: string; id: string; startTime: string; status: string; vulnerabilities: Vulnerability[]; - } \ No newline at end of file + }