-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollection.kt
More file actions
89 lines (85 loc) · 2.15 KB
/
Copy pathCollection.kt
File metadata and controls
89 lines (85 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package org.genspectrum.dashboardsbackend.api
import com.fasterxml.jackson.annotation.JsonInclude
import io.swagger.v3.oas.annotations.media.Schema
import kotlin.time.Instant
@Schema(
description = "A collection of variants",
example = """
{
"id": 1,
"name": "My Collection",
"ownedBy": 123,
"organism": "covid",
"description": "A collection of interesting variants",
"variantCount": 1,
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-02T00:00:00Z"
}
""",
)
data class Collection(
val id: Long,
val name: String,
val ownedBy: Long,
val organism: String,
val description: String?,
val variantCount: Int,
@JsonInclude(JsonInclude.Include.NON_NULL)
val variants: List<Variant>?,
val createdAt: Instant,
val updatedAt: Instant,
)
@Schema(
description = "Request to create a collection",
example = """
{
"name": "My Collection",
"organism": "covid",
"description": "A collection of interesting variants",
"variants": [
{
"type": "query",
"name": "BA.2 in USA",
"description": "BA.2 lineage cases in USA",
"countQuery": "country='USA' & lineage='BA.2'",
"coverageQuery": "country='USA'"
}
]
}
""",
)
data class CollectionRequest(
val name: String,
val organism: String,
val description: String? = null,
val variants: List<VariantRequest>,
)
@Schema(
description = "Request to update a collection",
example = """
{
"name": "Updated Collection Name",
"description": "Updated description",
"variants": [
{
"type": "query",
"id": 1,
"name": "BA.2 in USA",
"description": "BA.2 lineage cases in USA",
"countQuery": "country='USA' & lineage='BA.2'",
"coverageQuery": "country='USA'"
},
{
"type": "query",
"name": "New Variant Without ID",
"countQuery": "country='Germany'"
}
]
}
""",
)
data class CollectionUpdate(
val name: String? = null,
val description: String? = null,
val variants: List<VariantUpdate>? = null,
)