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
$schema
might require CycloneDX/specification#106
the current json result follows an existing schema, described in https://github.com/CycloneDX/specification/tree/master/schema
feature request: add the used schema as a property $schema of the resulting json. the value must be the $id of the schema used.
$id
http://cyclonedx.org/schema/bom-1.2a.schema.json
http://cyclonedx.org/schema/bom-1.3.schema.json
example:
{ "$schema": "http://cyclonedx.org/schema/bom-1.3.schema.json", "bomFormat": "CycloneDX", "specVersion": "1.3", "serialNumber": "urn:uuid:3e671687-395b-41f5-a30f-a58921a69b79", "version": 1, "components": [ { "type": "library", "name": "acme-library", "version": "1.0.0" } ] }
The text was updated successfully, but these errors were encountered:
madpah
No branches or pull requests
might require CycloneDX/specification#106
the current json result follows an existing schema, described in https://github.com/CycloneDX/specification/tree/master/schema
feature request: add the used schema as a property
$schema
of the resulting json.the value must be the
$id
of the schema used.http://cyclonedx.org/schema/bom-1.2a.schema.json
http://cyclonedx.org/schema/bom-1.3.schema.json
example:
The text was updated successfully, but these errors were encountered: