-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollection.kt
More file actions
81 lines (77 loc) · 1.87 KB
/
Copy pathCollection.kt
File metadata and controls
81 lines (77 loc) · 1.87 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
package org.genspectrum.dashboardsbackend.api
import io.swagger.v3.oas.annotations.media.Schema
@Schema(
description = "A collection of variants",
example = """
{
"id": 1,
"name": "My Collection",
"ownedBy": "user123",
"organism": "covid",
"description": "A collection of interesting variants",
"variants": []
}
""",
)
data class Collection(
val id: Long,
val name: String,
val ownedBy: String,
val organism: String,
val description: String?,
val variants: List<Variant>,
)
@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,
)