Skip to content

Commit

Permalink
fix: in JSON, CycloneDX property has mandatory name and no additional…
Browse files Browse the repository at this point in the history
…Properties

Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Feb 9, 2024
1 parent e6ea842 commit 0981967
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion schema/bom-1.6.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2218,6 +2218,9 @@
"type": "object",
"title": "Lightweight name-value pair",
"description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the [CycloneDX Property Taxonomy](https://github.com/CycloneDX/cyclonedx-property-taxonomy). Formal registration is OPTIONAL.",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
Expand All @@ -2229,7 +2232,8 @@
"title": "Value",
"description": "The value of the property."
}
}
},
"additionalProperties": false
},
"localeType": {
"type": "string",
Expand Down

0 comments on commit 0981967

Please sign in to comment.