Skip to content

Commit

Permalink
Feat: [#1091] - extension of package by vendor_name and type (#1093)
Browse files Browse the repository at this point in the history
### Related Issue: 
#1091

#### Description of changes:
Extension of package by vendor_name and type_id + type of Application,
Operation System, Unknown, Other

---------

Signed-off-by: Pavel Jurka <[email protected]>
  • Loading branch information
PavelJurka authored Jun 4, 2024
1 parent 4a5420b commit c0a18f2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ Thankyou! -->
3. Added `state_id`, `state` to `Digital Signature` object. #1069
4. Added `ticket` to `Incident Finding` object. ticket. #1068
5. Added `domain` to `Uniform Resource Locator` object. #1096
6. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
6. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
7. Added `type_id` and associated entity objects to `Managed Entity`. #1094

8. Added `vendor_name`, `type`, `type_id` to object `package`. #1093
* #### Platform Extensions

### Bugfixes
Expand Down
20 changes: 20 additions & 0 deletions objects/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,26 @@
"release": {
"requirement": "optional"
},
"vendor_name": {
"requirement": "optional"
},
"type": {
"description": "The type of software package, normalized to the caption of the type_id value. In the case of 'Other', it is defined by the source.",
"requirement": "optional"
},
"type_id": {
"enum": {
"1": {
"caption": "Application",
"description": "An application software package."
},
"2": {
"caption": "Operating System",
"description": "An operating system software package."
}
},
"requirement": "recommended"
},
"version": {
"description": "The software package version.",
"requirement": "required"
Expand Down

0 comments on commit c0a18f2

Please sign in to comment.