spdx `created` [specification](https://spdx.github.io/spdx-spec/v2.3/document-creation-information/#69-created-field) expects > YYYY-MM-DDThh:mm:ssZ as in the example: > Created: 2010-01-29T18:30:22Z However, the current implementation does not produce time in the expected format. **Steps to reproduce** 1. Take attached example or [sbom from scratch](https://github.com/spdx/tools-python/blob/e08e4d25d721bb1ada1301d9d8e8515852387ea0/examples/spdx2_document_from_scratch.py) example and modify [Line 41](https://github.com/spdx/tools-python/blob/e08e4d25d721bb1ada1301d9d8e8515852387ea0/examples/spdx2_document_from_scratch.py#L41): created=datetime.datetime.now(tz=datetime.timezone.utc), [Line 75](https://github.com/spdx/tools-python/blob/e08e4d25d721bb1ada1301d9d8e8515852387ea0/examples/spdx2_document_from_scratch.py#L75): release_date=datetime.datetime.now(tz=datetime.timezone.utc), 2. Build SBOM 3. Resulting SBOM has > "created": "2023-09-29T08:14:36+00:00Z", This does not match the spec and is also warned by: https://tools.spdx.org/app/ [test_sbom.py.zip](https://github.com/spdx/tools-python/files/12762552/test_sbom.py.zip)