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

Relaxing requirement of vendor_name in the product object #1300

Merged
merged 3 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ Thankyou! -->
1. Added `resource_details.name` as an Observable type `type_id: 38`. #1250
1. Added 3 new enums (Registry Value, Registry Key, Command Line) to `osint.type_id` and added TLP:WHITE to `osint.tlp` enums. #1264
1. Relaxed attribute requirement for `name` in `observables` object; `title` in `finding_info` object. #1271
1. Relaxed attribute requirement for `vendor_name` in the `product` object. #1300

## [v1.3.0] - August 1st, 2024

Expand Down
2 changes: 1 addition & 1 deletion objects/product.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"vendor_name": {
"description": "The name of the vendor of the product.",
"requirement": "required"
"requirement": "recommended"
},
"version": {
"description": "The version of the product, as defined by the event source. For example: <code>2013.1.3-beta</code>.",
Expand Down
Loading