We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The homepage field of a package could be "NOASSERTION" or "NONE". When parsing a file like the one below
homepage
"NOASSERTION"
"NONE"
{ "spdxVersion": "SPDX-2.3", "documentNamespace": "https://true", "creationInfo": { "creators": [ "Person: Mee (mee)" ], "created": "2023-04-17T12:34:39Z", "licenseListVersion": "3.20" }, "dataLicense": "CC0-1.0", "SPDXID": "SPDXRef-DOCUMENT", "name": "Test 2", "packages": [ { "SPDXID": "SPDXRef-package", "name": "Test", "downloadLocation": "NOASSERTION", "homepage": "NOASSERTION" }] }
a ValidationError is raised. This originates from the JSON parser which doesn't process the field correctly.
ValidationError
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The
homepage
field of a package could be"NOASSERTION"
or"NONE"
.When parsing a file like the one below
a
ValidationError
is raised. This originates from the JSON parser which doesn't process the field correctly.The text was updated successfully, but these errors were encountered: