Skip to content

Commit

Permalink
fix: ProtoBuf evidence not repeated, but optional
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Apr 10, 2024
1 parent 55343ba commit db3abbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/bom-1.6.proto
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ message Component {
// Specifies optional, custom, properties
repeated Property properties = 22;
// Specifies optional license and copyright evidence
repeated Evidence evidence = 23;
optional Evidence evidence = 23;

Check failure on line 136 in schema/bom-1.6.proto

View workflow job for this annotation

GitHub Actions / test

Field "23" on message "Component" changed label from "repeated" to "optional".

Check failure on line 136 in schema/bom-1.6.proto

View workflow job for this annotation

GitHub Actions / test

Field "23" on message "Component" moved from outside to inside a oneof.

Check failure on line 136 in schema/bom-1.6.proto

View workflow job for this annotation

GitHub Actions / test

Field "23" on message "Component" changed label from "repeated" to "optional".

Check failure on line 136 in schema/bom-1.6.proto

View workflow job for this annotation

GitHub Actions / test

Field "23" on message "Component" moved from outside to inside a oneof.
// Specifies optional release notes.
optional ReleaseNotes releaseNotes = 24;
// A model card describes the intended uses of a machine learning model, potential limitations, biases, ethical considerations, training parameters, datasets used to train the model, performance metrics, and other relevant data useful for ML transparency.
Expand Down

0 comments on commit db3abbe

Please sign in to comment.