Skip to content

Commit ed1a4af

Browse files
committed
fix: use TEA Artifact named term where applicable
Signed-off-by: Pavel Shukhman <[email protected]>
1 parent 09a8362 commit ed1a4af

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

api-flow/consumer.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The standard TEI points to a product release. A product release is something sol
1212
Each Component release has its own versioning and its own set of artefacts, they have a timestamp and a lifecycle enumeration. They are normally sorted by timestamps. The TEA API has no requirements of type of version string (semantic or any other scheme) - it's just an identifier set by the manufacturer.
1313
- __List of TEA Collections__: For each release, there is a list of TEA collections as indicated
1414
by release date and a version integer starting with collection version 1.
15-
- __List of TEA Artefacts__: The collection is unique for a version and contains a list of artefacts.
15+
- __List of TEA Artifacts__: The collection is unique for a version and contains a list of artefacts.
1616
This can be SBOM files, VEX, SCITT, IN-TOTO or other documents. Note that a single artefact
1717
can belong to multiple Component or Product Releases.
1818
- __List of artefact formats__: An artefact can be published in multiple formats.
@@ -58,7 +58,7 @@ sequenceDiagram
5858
5959
loop For each tea_component_release
6060
user ->> tea_component_release: Obtain latest collections
61-
tea_component_release -->> user: List of Artefacts
61+
tea_component_release -->> user: List of TEA Artifacts
6262
end
6363
6464
```
@@ -80,23 +80,23 @@ sequenceDiagram
8080
participant tea_product_release as TEA Product Release
8181
participant tea_component_release as TEA Component Release
8282
participant tea_collection as TEA Collection
83-
participant tea_artefact as TEA Artefact
83+
participant tea_artifact as TEA Artifact
8484
8585
8686
user ->> tea_product_release: Search for product releases based on identifier (CPE, PURL, name)
8787
tea_product_release ->> user: List of product releases
8888
89-
user ->> tea_product_release: Finding all product parts (TEA Component Releases) and facts about choosen product
89+
user ->> tea_product_release: Finding all product parts (TEA Component Releases) and facts about choosen product
9090
tea_product_release ->> user: List of TEA Component Releases
9191
9292
user ->> tea_component_release: Finding information of a component release
9393
tea_component_release ->> user: List of releases and collection id for each release
9494
95-
user ->> tea_collection: Finding all artefacts for TEA Component Release
96-
tea_collection ->> user: List of artefacts and formats available for each artefact
95+
user ->> tea_collection: Finding all TEA Artifacts for TEA Component Release
96+
tea_collection ->> user: List of TEA Artifacts and formats available for each TEA Artifact
9797
98-
user ->> tea_artefact: Request to download artefact
99-
tea_artefact ->> user: Artefact
98+
user ->> tea_artifact: Request to download TEA artifact
99+
tea_artifact ->> user: TEA Artifact
100100
101101
```
102102

0 commit comments

Comments
 (0)