Skip to content

Commit bd6a088

Browse files
committed
feat: bump JSON schemas to latest fix verison for 1.2 and 1.3 - see:
- CycloneDX/specification#123 - CycloneDX/specification#84 - CycloneDX/specification#125 Signed-off-by: Paul Horton <[email protected]>
1 parent 91ceeb1 commit bd6a088

22 files changed

+2132
-21
lines changed

cyclonedx/output/json.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ def _get_schema_uri(self) -> Optional[str]:
210210
class JsonV1Dot2(Json, SchemaVersion1Dot2):
211211

212212
def _get_schema_uri(self) -> Optional[str]:
213-
return 'http://cyclonedx.org/schema/bom-1.2a.schema.json'
213+
return 'http://cyclonedx.org/schema/bom-1.2b.schema.json'
214214

215215

216216
class JsonV1Dot3(Json, SchemaVersion1Dot3):
217217

218218
def _get_schema_uri(self) -> Optional[str]:
219-
return 'http://cyclonedx.org/schema/bom-1.3.schema.json'
219+
return 'http://cyclonedx.org/schema/bom-1.3a.schema.json'
220220

221221

222222
class JsonV1Dot4(Json, SchemaVersion1Dot4):

0 commit comments

Comments
 (0)