@@ -64,7 +64,7 @@ class DataFlow(str, Enum):
6464 This is our internal representation of the dataFlowType simple type within the CycloneDX standard.
6565
6666 .. note::
67- See the CycloneDX Schema: https://cyclonedx.org/docs/1.4 /xml/#type_dataFlowType
67+ See the CycloneDX Schema: https://cyclonedx.org/docs/1.6 /xml/#type_dataFlowType
6868 """
6969 INBOUND = 'inbound'
7070 OUTBOUND = 'outbound'
@@ -82,7 +82,7 @@ class DataClassification:
8282
8383 .. note::
8484 See the CycloneDX Schema for dataClassificationType:
85- https://cyclonedx.org/docs/1.4 /xml/#type_dataClassificationType
85+ https://cyclonedx.org/docs/1.6 /xml/#type_dataClassificationType
8686 """
8787
8888 def __init__ (
@@ -160,7 +160,7 @@ class Encoding(str, Enum):
160160 This is our internal representation of the encoding simple type within the CycloneDX standard.
161161
162162 .. note::
163- See the CycloneDX Schema: https://cyclonedx.org/docs/1.4 /#type_encoding
163+ See the CycloneDX Schema: https://cyclonedx.org/docs/1.6 /#type_encoding
164164 """
165165 BASE_64 = 'base64'
166166
@@ -171,7 +171,7 @@ class AttachedText:
171171 This is our internal representation of the `attachedTextType` complex type within the CycloneDX standard.
172172
173173 .. note::
174- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.3 /#type_attachedTextType
174+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6 /#type_attachedTextType
175175 """
176176
177177 DEFAULT_CONTENT_TYPE = 'text/plain'
@@ -263,7 +263,7 @@ class HashAlgorithm(str, Enum):
263263 This is our internal representation of the hashAlg simple type within the CycloneDX standard.
264264
265265 .. note::
266- See the CycloneDX Schema: https://cyclonedx.org/docs/1.3 /#type_hashAlg
266+ See the CycloneDX Schema: https://cyclonedx.org/docs/1.6 /#type_hashAlg
267267 """
268268 # see `_HashTypeRepositorySerializationHelper.__CASES` for view/case map
269269 BLAKE2B_256 = 'BLAKE2b-256' # Only supported in >= 1.2
@@ -386,7 +386,7 @@ class HashType:
386386 This is our internal representation of the hashType complex type within the CycloneDX standard.
387387
388388 .. note::
389- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.3 /#type_hashType
389+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6 /#type_hashType
390390 """
391391
392392 @staticmethod
@@ -542,7 +542,7 @@ class ExternalReferenceType(str, Enum):
542542 Enum object that defines the permissible 'types' for an External Reference according to the CycloneDX schema.
543543
544544 .. note::
545- See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.3 /#type_externalReferenceType
545+ See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.6 /#type_externalReferenceType
546546 """
547547 # see `_ExternalReferenceSerializationHelper.__CASES` for view/case map
548548 ADVERSARY_MODEL = 'adversary-model' # Only supported in >= 1.5
@@ -810,7 +810,7 @@ class ExternalReference:
810810 a CycloneDX BOM document.
811811
812812 .. note::
813- See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.3 /#type_externalReference
813+ See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.6 /#type_externalReference
814814 """
815815
816816 def __init__ (
@@ -923,7 +923,7 @@ class Property:
923923 a CycloneDX BOM document.
924924
925925 .. note::
926- See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4 /xml/#type_propertyType
926+ See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.6 /xml/#type_propertyType
927927
928928 Specifies an individual property with a name and value.
929929 """
@@ -997,7 +997,7 @@ class NoteText:
997997 a CycloneDX BOM document.
998998
999999 .. note::
1000- See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4 /xml/#type_releaseNotesType
1000+ See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.6 /xml/#type_releaseNotesType
10011001 """
10021002
10031003 DEFAULT_CONTENT_TYPE : str = 'text/plain'
@@ -1088,7 +1088,7 @@ class Note:
10881088 a CycloneDX BOM document.
10891089
10901090 .. note::
1091- See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4 /xml/#type_releaseNotesType
1091+ See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.6 /xml/#type_releaseNotesType
10921092
10931093 @todo: Replace ``NoteText`` with ``AttachedText``?
10941094 """
@@ -1171,7 +1171,7 @@ class IdentifiableAction:
11711171 This is our internal representation of the `identifiableActionType` complex type.
11721172
11731173 .. note::
1174- See the CycloneDX specification: https://cyclonedx.org/docs/1.4 /xml/#type_identifiableActionType
1174+ See the CycloneDX specification: https://cyclonedx.org/docs/1.6 /xml/#type_identifiableActionType
11751175 """
11761176
11771177 def __init__ (
@@ -1261,7 +1261,7 @@ class Copyright:
12611261 This is our internal representation of the `copyrightsType` complex type.
12621262
12631263 .. note::
1264- See the CycloneDX specification: https://cyclonedx.org/docs/1.4 /xml/#type_copyrightsType
1264+ See the CycloneDX specification: https://cyclonedx.org/docs/1.6 /xml/#type_copyrightsType
12651265 """
12661266
12671267 def __init__ (
0 commit comments