Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: [#1091] - extension of package by vendor_name and type #1093

Merged
merged 7 commits into from
Jun 4, 2024
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ 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 `vendor_name`, `type`, `type_id` to object `package`. #1091
PavelJurka marked this conversation as resolved.
Show resolved Hide resolved
* #### Platform Extensions

### Bugfixes
Expand Down
19 changes: 19 additions & 0 deletions objects/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,25 @@
"release": {
"requirement": "optional"
},
"vendor_name": {
"requirement": "optional"
},
"type": {
"description": "A type of software package.",
PavelJurka marked this conversation as resolved.
Show resolved Hide resolved
"requirement": "optional"
},
"type_id": {
"enum": {
"1": {
"caption": "Application",
"description": "An application software package."
},
"2": {
"caption": "Operating System",
"description": "An operating system software package."
}
}
},
"version": {
"description": "The software package version.",
"requirement": "required"
Expand Down
Loading