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: [#1109] - extended compliance finding - compliance by adding co… #1110

Merged
merged 2 commits into from
Jul 2, 2024
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ Thankyou! -->
7. Added `whois` object. #992
8. Added `domain_contact` and array-typed `domain_contacts` object for use with `whois` object. #992
9. Added `Windows Service` object to the Windows extension. #1103
10. Added array-typed `compliacne_references` and array-typed `compliance_standards` objects as array of `kb_article` and used in `compliance` object. #1110
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is misspelled and should be compliance_references.



* #### Platform Extensions

Expand Down
12 changes: 12 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,18 @@
"description": "The compliance object provides context to compliance findings (e.g., a check against a specific regulatory or best practice framework such as CIS, NIST etc.) and contains compliance related details.",
"type": "compliance"
},
"compliance_references": {
"caption": "Complaince References Articles",
"description": "A list of sources of information or tools that help organizations understand, interpret, and implement compliance standards. They provide guidance, best practices, and examples.",
"type": "kb_article",
"is_array": true
},
"compliance_standards": {
"caption": "Compliance Standards Articles",
"description": "A list of established guidelines or criteria that define specific requirements an organization must follow.",
"type": "kb_article",
"is_array": true
},
"component": {
"caption": "Component",
"description": "The component of a data object. See specific usage.",
Expand Down
6 changes: 6 additions & 0 deletions objects/compliance.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
"extends": "object",
"name": "compliance",
"attributes": {
"compliance_references": {
PavelJurka marked this conversation as resolved.
Show resolved Hide resolved
"requirement": "optional"
},
"compliance_standards": {
PavelJurka marked this conversation as resolved.
Show resolved Hide resolved
"requirement": "optional"
},
"control": {
"requirement": "recommended"
},
Expand Down
Loading