@@ -111,10 +111,10 @@ paths:
111
111
$ref : " #/components/responses/404-object-by-id-not-found"
112
112
tags :
113
113
- TEA Component
114
- /release/{uuid}/collection :
114
+ /release/{uuid}/collection/latest :
115
115
get :
116
116
description : Get the latest TEA Collection belonging to the TEA Release
117
- operationId : getLatestCollectionByReleaseId
117
+ operationId : getLatestCollection
118
118
parameters :
119
119
- name : uuid
120
120
in : path
@@ -163,18 +163,18 @@ paths:
163
163
$ref : " #/components/responses/404-object-by-id-not-found"
164
164
tags :
165
165
- TEA Release
166
- /release/{uuid}/collection/{version } :
166
+ /release/{uuid}/collection/{collectionVersion } :
167
167
get :
168
- description : Get all versions of a TEA Collection by its UUID
169
- operationId : getTeaCollectionVersionByCollectionIdAndVersion
168
+ description : Get a specific Collection (by version) for a TEA Release by its UUID
169
+ operationId : getCollection
170
170
parameters :
171
171
- name : uuid
172
172
in : path
173
173
required : true
174
174
description : UUID of TEA Collection in the TEA server
175
175
schema :
176
176
" $ref " : " #/components/schemas/uuid"
177
- - name : version
177
+ - name : collectionVersion
178
178
in : path
179
179
required : true
180
180
description : Version of TEA Collection
@@ -347,8 +347,11 @@ components:
347
347
description : Version number
348
348
type : string
349
349
example : 1.2.3
350
+ createdDate :
351
+ description : Timestamp when this Release was created in TEA (for sorting purposes)
352
+ " $ref " : " #/components/schemas/date-time"
350
353
releaseDate :
351
- description : Timestamp of the release (for sorting purposes)
354
+ description : Timestamp of the release
352
355
" $ref " : " #/components/schemas/date-time"
353
356
preRelease :
354
357
type : boolean
@@ -364,26 +367,28 @@ components:
364
367
required :
365
368
- uuid
366
369
- version
367
- - releaseDate
370
+ - createdDate
368
371
examples :
369
372
# Apache Tomcat 11.0.6
370
373
- uuid : 605d0ecb-1057-40e4-9abf-c400b10f0345
371
374
version : " 11.0.6"
375
+ createdDate : 2025-04-01T15:43:00Z
372
376
releaseDate : 2025-04-01T15:43:00Z
373
377
identifiers :
374
378
- idType : PURL
375
379
idValue :
pkg:maven/org.apache.tomcat/[email protected]
376
380
# Different release of Apache Tomcat
377
381
- uuid : da89e38e-95e7-44ca-aa7d-f3b6b34c7fab
378
382
version : " 10.1.40"
383
+ createdDate : 2025-04-01T18:20:00Z
379
384
releaseDate : 2025-04-01T18:20:00Z
380
385
identifiers :
381
386
- idType : PURL
382
387
idValue :
pkg:maven/org.apache.tomcat/[email protected]
383
388
# A pre-release of Apache Tomcat
384
389
- uuid : 95f481df-f760-47f4-b2f2-f8b76d858450
385
390
version : " 11.0.0-M26"
386
- releaseDate : 2024-09-13T17:49:00Z
391
+ createdDate : 2024-09-13T17:49:00Z
387
392
preRelease : true
388
393
identifiers :
389
394
- idType : PURL
0 commit comments