cyclonedx.model.contact

Classes

PostalAddress

This is our internal representation of the postalAddressType complex type that can be used in multiple places

OrganizationalContact

This is our internal representation of the organizationalContact complex type that can be used in multiple places

OrganizationalEntity

This is our internal representation of the organizationalEntity complex type that can be used in multiple places

Module Contents

class cyclonedx.model.contact.PostalAddress

This is our internal representation of the postalAddressType complex type that can be used in multiple places within a CycloneDX BOM document.

Note

See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.7/xml/#type_postalAddressType

bom_ref: cyclonedx.model.bom_ref.BomRef
country: str | None
region: str | None
locality: str | None
post_office_box_number: str | None
postal_code: str | None
street_address: str | None
class cyclonedx.model.contact.OrganizationalContact

This is our internal representation of the organizationalContact complex type that can be used in multiple places within a CycloneDX BOM document.

Note

See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.7/xml/#type_organizationalContact

bom_ref: cyclonedx.model.bom_ref.BomRef
name: str | None
email: str | None
phone: str | None
class cyclonedx.model.contact.OrganizationalEntity

This is our internal representation of the organizationalEntity complex type that can be used in multiple places within a CycloneDX BOM document.

Note

See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.7/xml/#type_organizationalEntity

bom_ref: cyclonedx.model.bom_ref.BomRef
name: str | None
address: PostalAddress | None
urls: SortedSet[XsUri]
contacts: SortedSet[OrganizationalContact]