@@ -423,6 +423,16 @@ paths:
423
423
description : Filter by isActive flag.
424
424
required : false
425
425
type : boolean
426
+ - name : abbreviation
427
+ in : query
428
+ description : Filter by abbreviation. Partial matches are allowed.
429
+ required : false
430
+ type : string
431
+ - name : legacyId
432
+ in : query
433
+ description : Filter by legacy id.
434
+ required : false
435
+ type : integer
426
436
responses :
427
437
' 200 ' :
428
438
description : OK
@@ -496,7 +506,7 @@ paths:
496
506
$ref : ' #/definitions/ErrorModel'
497
507
' 409 ' :
498
508
description : >
499
- Conflict. Other challenge type has already used the same name.
509
+ Conflict. Other challenge type has already used the same name, abbreviation or legacyId .
500
510
schema :
501
511
$ref : ' #/definitions/ErrorModel'
502
512
' 500 ' :
@@ -579,7 +589,7 @@ paths:
579
589
$ref : ' #/definitions/ErrorModel'
580
590
' 409 ' :
581
591
description : >
582
- Conflict. Other challenge type has already used the same name.
592
+ Conflict. Other challenge type has already used the same name, abbreviation or legacyId .
583
593
schema :
584
594
$ref : ' #/definitions/ErrorModel'
585
595
' 500 ' :
@@ -633,7 +643,7 @@ paths:
633
643
$ref : ' #/definitions/ErrorModel'
634
644
' 409 ' :
635
645
description : >
636
- Conflict. Other challenge type has already used the same name.
646
+ Conflict. Other challenge type has already used the same name, abbreviation or legacyId .
637
647
schema :
638
648
$ref : ' #/definitions/ErrorModel'
639
649
' 500 ' :
@@ -1815,6 +1825,12 @@ definitions:
1815
1825
type : integer
1816
1826
description : the winner placement
1817
1827
example : 1
1828
+ numOfSubmissions :
1829
+ type : integer
1830
+ description : number of submissions
1831
+ numOfRegistrants :
1832
+ type : integer
1833
+ description : number of registrants
1818
1834
created :
1819
1835
type : string
1820
1836
format : date-time
@@ -1871,9 +1887,14 @@ definitions:
1871
1887
type : string
1872
1888
isActive :
1873
1889
type : boolean
1890
+ abbreviation :
1891
+ type : string
1892
+ legacyId :
1893
+ type : integer
1874
1894
required :
1875
1895
- name
1876
1896
- isActive
1897
+ - abbreviation
1877
1898
ChallengeSettingsData :
1878
1899
type : object
1879
1900
properties :
@@ -2160,6 +2181,12 @@ definitions:
2160
2181
type : integer
2161
2182
description : the winner placement
2162
2183
example : 1
2184
+ numOfSubmissions :
2185
+ type : integer
2186
+ description : number of submissions
2187
+ numOfRegistrants :
2188
+ type : integer
2189
+ description : number of registrants
2163
2190
created :
2164
2191
type : string
2165
2192
format : date-time
0 commit comments