| 
 | 1 | +.. # Licensed under the Apache License, Version 2.0 (the "License");  | 
 | 2 | +   # you may not use this file except in compliance with the License.  | 
 | 3 | +   # You may obtain a copy of the License at  | 
 | 4 | +   #  | 
 | 5 | +   #     http://www.apache.org/licenses/LICENSE-2.0  | 
 | 6 | +   #  | 
 | 7 | +   # Unless required by applicable law or agreed to in writing, software  | 
 | 8 | +   # distributed under the License is distributed on an "AS IS" BASIS,  | 
 | 9 | +   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  | 
 | 10 | +   # See the License for the specific language governing permissions and  | 
 | 11 | +   # limitations under the License.  | 
 | 12 | +   #  | 
 | 13 | +   # SPDX-License-Identifier: Apache-2.0  | 
 | 14 | +
  | 
 | 15 | +Responsibilities  | 
 | 16 | +================  | 
 | 17 | + | 
 | 18 | +* Provide a general purpose Python-implementation of `CycloneDX`_.  | 
 | 19 | +* Provide type hints for said implementation, so developers and dev-tools can rely on it.  | 
 | 20 | +* Provide data models to work with CycloneDX.  | 
 | 21 | +* Provide data model-validators according to `CycloneDX Specification`_.  | 
 | 22 | +* Provide JSON- and XML-serializers, that...  | 
 | 23 | +   * support all shipped data models.  | 
 | 24 | +   * respect any supported `CycloneDX Specification`_ and generates valid output according to it.  | 
 | 25 | +   * generate reproducible/deterministic results.  | 
 | 26 | +* Provide formal JSON- and XML-validators according to `CycloneDX Specification`_.  | 
 | 27 | +* Pre-populate `bom-ref`, so linkage is possible. (affects only some data models)  | 
 | 28 | + | 
 | 29 | +Capabilities  | 
 | 30 | +============  | 
 | 31 | + | 
 | 32 | +* Enums for the following use cases:  | 
 | 33 | +* Data models for the following use cases:  | 
 | 34 | +* Factories for the following use cases:  | 
 | 35 | +* Builders for the following use cases:  | 
 | 36 | +   * Build a :class:`Component <cyclonedx.model.component.Component>` data model that represents this library  | 
 | 37 | +   * Build a :class:`Tool <cyclonedx.model.tool.Tool>` data model that represents this library  | 
 | 38 | +* Implementation of the `CycloneDX Specification`_ for the following versions:  | 
 | 39 | +   * ``1.6``  | 
 | 40 | +   * ``1.5``  | 
 | 41 | +   * ``1.4``  | 
 | 42 | +   * ``1.3``  | 
 | 43 | +   * ``1.2``  | 
 | 44 | +   * ``1.1``  | 
 | 45 | +   * ``1.0``  | 
 | 46 | +* Serializer that converts :class:`BOM <cyclonedx.model.bom.Bom>` data models to XML string  | 
 | 47 | +* Serializer that converts :class:`BOM <cyclonedx.model.bom.Bom>` data models to JSON string  | 
 | 48 | +* Formal validators for JSON string and XML string.  | 
 | 49 | +  Requires optional dependencies as described in :ref:`install instructions <install extras>`  | 
 | 50 | + | 
 | 51 | + | 
 | 52 | +.. _CycloneDX: https://cyclonedx.org/  | 
 | 53 | +.. _CycloneDX Specification: https://github.com/CycloneDX/specification/#readme  | 
0 commit comments