You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.json
+36-2Lines changed: 36 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -592,7 +592,8 @@
592
592
"type": "object",
593
593
"required": [
594
594
"submissions",
595
-
"questions"
595
+
"questions",
596
+
"filteredSubmissionsCount"
596
597
],
597
598
"properties": {
598
599
"submissions": {
@@ -606,6 +607,10 @@
606
607
"items": {
607
608
"$ref": "#/components/schemas/Question"
608
609
}
610
+
},
611
+
"filteredSubmissionsCount": {
612
+
"type": "integer",
613
+
"format": "int64"
609
614
}
610
615
}
611
616
},
@@ -3019,10 +3024,39 @@
3019
3024
"format": "int64"
3020
3025
}
3021
3026
},
3027
+
{
3028
+
"name": "query",
3029
+
"in": "query",
3030
+
"description": "(optional) A search query to filter submissions",
3031
+
"schema": {
3032
+
"type": "string",
3033
+
"nullable": true
3034
+
}
3035
+
},
3036
+
{
3037
+
"name": "limit",
3038
+
"in": "query",
3039
+
"description": "(optional) The maximum number of submissions to retrieve. Defaults to `null`",
3040
+
"schema": {
3041
+
"type": "integer",
3042
+
"format": "int64",
3043
+
"nullable": true
3044
+
}
3045
+
},
3046
+
{
3047
+
"name": "offset",
3048
+
"in": "query",
3049
+
"description": "(optional) The offset for pagination. Defaults to `0`",
3050
+
"schema": {
3051
+
"type": "integer",
3052
+
"format": "int64",
3053
+
"default": 0
3054
+
}
3055
+
},
3022
3056
{
3023
3057
"name": "fileFormat",
3024
3058
"in": "query",
3025
-
"description": "the file format that should be used for the download. Defaults to `null` Possible values: - `csv`: Comma-separated value - `ods`: OpenDocument Spreadsheet - `xlsx`: Excel Open XML Spreadsheet",
3059
+
"description": "(optional) The file format that should be used for the download. Defaults to `null` Possible values: - `csv`: Comma-separated value - `ods`: OpenDocument Spreadsheet - `xlsx`: Excel Open XML Spreadsheet",
0 commit comments