TEA Release

Get the TEA Collections belonging to the TEA Release

get/release/{uuid}/collections

Path parameters

uuidstring uuid required

A UUID

UUID of TEA Release in the TEA server

Response

Requested TEA Collection found and returned

uuidstring uuid

A UUID

versioninteger

TEA Collection version, incremented each time its content changes. Versions start with 1.

datestring date-time

Timestamp

belongsTo'RELEASE' | 'PRODUCT_RELEASE'

Indicates whether a collection belongs to a component release or a product release

Example response

[
  {
    "uuid": "4c72fe22-9d83-4c2f-8eba-d6db484f32c8",
    "version": 3,
    "date": "2024-12-13T00:00:00Z",
    "updateReason": {
      "type": "ARTIFACT_UPDATED",
      "comment": "VDR file updated"
    },
    "artifacts": [
      {
        "uuid": "1cb47b95-8bf8-3bad-a5a4-0d54d86e10ce",
        "name": "Build SBOM",
        "type": "BOM",
        "formats": [
          {
            "mimeType": "application/vnd.cyclonedx+xml",
            "description": "CycloneDX SBOM (XML)",
            "url": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.24.3/log4j-core-2.24.3-cyclonedx.xml",
            "signatureUrl": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.24.3/log4j-core-2.24.3-cyclonedx.xml.asc",
            "checksums": [
              {
                "algType": "MD5",
                "algValue": "2e1a525afc81b0a8ecff114b8b743de9"
              },
              {
                "algType": "SHA-1",
                "algValue": "5a7d4caef63c5c5ccdf07c39337323529eb5a770"
              }
            ]
          }
        ]
      },
      {
        "uuid": "dfa35519-9734-4259-bba1-3e825cf4be06",
        "name": "Vulnerability Disclosure Report",
        "type": "VULNERABILITIES",
        "formats": [
          {
            "mimeType": "application/vnd.cyclonedx+xml",
            "description": "CycloneDX VDR (XML)",
            "url": "https://logging.apache.org/cyclonedx/vdr.xml",
            "checksums": [
              {
                "algType": "SHA-256",
                "algValue": "75b81020b3917cb682b1a7605ade431e062f7a4c01a412f0b87543b6e995ad2a"
              }
            ]
          }
        ]
      }
    ]
  }
]

Changes