Skip to content

Commit

Permalink
fix: update SeverityType enum
Browse files Browse the repository at this point in the history
`UNSPECIFIED` was removed, and `CVSS_V2` was added

https://github.com/ossf/osv-schema/pull/87/files
  • Loading branch information
JamieMagee committed Dec 22, 2022
1 parent 8055109 commit 2508183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OSV.Schema/SeverityType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
[JsonConverter(typeof(JsonStringEnumMemberConverter))]
public enum SeverityType
{
[EnumMember(Value = "UNSPECIFIED")]
Unspecified,
[EnumMember(Value = "CVSS_V2")]
CvssV2,
[EnumMember(Value = "CVSS_V3")]
CvssV3,
}

0 comments on commit 2508183

Please sign in to comment.