Skip to content

Commit

Permalink
schema: Add version to issue ID fields
Browse files Browse the repository at this point in the history
Add the "version" field to "issues" ID description, since it's the
combination of both the "id" and the "version" field which identifies
the "issue" object uniquely.
  • Loading branch information
spbnick committed Oct 18, 2024
1 parent 5216bb5 commit cd382fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kcidb_io/schema/v04_01.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,6 @@ class Version(PreviousVersion):
checkouts=dict(id=str),
builds=dict(id=str),
tests=dict(id=str),
issues=dict(id=str),
issues=dict(id=str, version=int),
incidents=dict(id=str),
)

0 comments on commit cd382fe

Please sign in to comment.