-
Notifications
You must be signed in to change notification settings - Fork 3
Update indicator validation schema #39
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0a452b7
Create dependency management indicator
fdiblen baca448
adapt the dependency management to the new indicator schema
da20078
add source filed to the dependency management indicator
741b9be
Merge branch 'main' into indicator_sus_dependency
ad22517
Merge branch 'main' into indicator_sus_dependency
5394251
add the second source for dependency management indicator
2567821
update author field in indicator validation schema
2f87143
created field is not required in indicator validation schema
ad0bcfe
update contact field in indicator validation schema
17af04f
update source field in indicator validation schema
30bd1fd
adapt source filed of indicators/no_critical_vulnerability.json
2df80ff
adapt source filed of indicators/no_leaked_credential.json and remove…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"@context": "https://w3id.org/everse/rsqi#", | ||
"@id": "https://w3id.org/everse/i/indicators/dependency_management", | ||
"@type": "SoftwareQualityIndicator", | ||
"name": "Software has dependency management solution", | ||
"identifier": { "@id": "https://w3id.org/everse/i/indicators/dependency_management" }, | ||
"description": "Reviews how external libraries and dependencies are managed to ensure compatibility and security.", | ||
"status": "Active", | ||
"keywords": [ | ||
"sustaninability", "dependencies" | ||
], | ||
"version": "1.0.0", | ||
"author": { | ||
"@type": "Person", | ||
"name": "Faruk Diblen" | ||
}, | ||
"contact": { | ||
"@type": "Person", | ||
"name": "Faruk Diblen" | ||
}, | ||
"source": [ | ||
{ | ||
"identifier": "https://zenodo.org/record/14852424", | ||
"url": "https://zenodo.org/records/14852424/files/Software%20Quality%20Indicators.xlsx", | ||
"name": "Software Quality Indicators from BioHackathon 2024 (Sheet: Sustanability, Row: Su7)" | ||
}, | ||
{ | ||
"url": "https://fair-impact.github.io/RSMD-guidelines/8.rsmd_checklist/", | ||
"name": "RSMD checklist" | ||
} | ||
], | ||
"qualityDimension": { "@id": "https://w3id.org/everse/i/dimensions/sustaninability" }, | ||
"created": "03-04-2025" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,24 +3,26 @@ | |
"@type": "SoftwareQualityIndicator", | ||
"name": "noCriticalVulnerability", | ||
"description": "Checks if reported critical vulnerabilities has been fixed", | ||
"keywords": ["security", "critical", "vulnerability"], | ||
"identifier": { "@id": "https://w3id.org/everse/i/indicators/no_critical_vulnerability"}, | ||
"keywords": [ "security", "critical", "vulnerability" ], | ||
"identifier": { "@id": "https://w3id.org/everse/i/indicators/no_critical_vulnerability" }, | ||
"status": "Active", | ||
"version": "1.0.0", | ||
"author": { | ||
"@type": "schema:Organization", | ||
"name": "OpenSSF", | ||
"url": "https://openssf.org/" | ||
}, | ||
"source": { | ||
"@id": "https://www.bestpractices.dev/en/criteria/0#0.vulnerabilities_critical_fixed", | ||
"name": "OpenSSF Best practice Critical Vulnerability Fixed" | ||
}, | ||
"source": [ | ||
{ | ||
"@id": "https://www.bestpractices.dev/en/criteria/0#0.vulnerabilities_critical_fixed", | ||
"name": "OpenSSF Best practice Critical Vulnerability Fixed" | ||
} | ||
], | ||
"contact": { | ||
"@type": "schema:Person", | ||
"name": "Tom François", | ||
"schema:email": "[email protected]" | ||
}, | ||
"qualityDimension": {"@id": "https://w3id.org/everse/i/dimensions/security"}, | ||
"qualityDimension": { "@id": "https://w3id.org/everse/i/dimensions/security" }, | ||
"created": "03-04-2025" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,24 +3,25 @@ | |
"@type": "SoftwareQualityIndicator", | ||
"name": "noLeakedCredentials", | ||
"description": "Checks if hardcoded secrets like passwords, API keys, and tokens is stored in the public git repository", | ||
"keywords": ["security", "credential", "leak", "secret", "password"], | ||
"url": "", | ||
"identifier": {"@id": "https://w3id.org/everse/i/indicators/no_leaked_credential"}, | ||
"keywords": [ "security", "credential", "leak", "secret", "password" ], | ||
"identifier": { "@id": "https://w3id.org/everse/i/indicators/no_leaked_credential" }, | ||
"status": "Active", | ||
"version": "1.0.0", | ||
"author": { | ||
"@type": "schema:Organization", | ||
"name": "OpenSSF", | ||
"url": "https://openssf.org/" | ||
}, | ||
"source": { | ||
"@id": "https://www.bestpractices.dev/en/criteria/0#0.no_leaked_credentials", | ||
"name": "OpenSSF Best practice No Leaked Credentials" | ||
}, | ||
"source": [ | ||
{ | ||
"@id": "https://www.bestpractices.dev/en/criteria/0#0.no_leaked_credentials", | ||
"name": "OpenSSF Best practice No Leaked Credentials" | ||
} | ||
], | ||
"contact": { | ||
"@type": "schema:Person", | ||
"name": "Tom François", | ||
"schema:email": "[email protected]" | ||
}, | ||
"qualityDimension": {"@id": "https://w3id.org/everse/i/dimensions/security"} | ||
"qualityDimension": { "@id": "https://w3id.org/everse/i/dimensions/security" } | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question. Is this correct? You are technically the author of the entry, but not the author of the indicator, right?