@@ -266,6 +266,15 @@ paths:
266
266
in : query
267
267
schema :
268
268
$ref : ' schema.yaml#/components/schemas/ExperimentStatus'
269
+ - name : status_friendly
270
+ in : query
271
+ description : |
272
+ status_friendly is a combination of the status field, in conjunction with the duration,
273
+ that produces a user-friendly classification of the experiment statuses. When this parameter
274
+ is supplied, the status, start_time and end_time filters can also be set. However, the final
275
+ result would be an intersection of the application of each of these filters.
276
+ schema :
277
+ $ref : ' schema.yaml#/components/schemas/ExperimentStatusFriendly'
269
278
- name : end_time
270
279
description : Used together with the start_time, to filter experiments that are at least partially running in the input range.
271
280
in : query
@@ -1371,7 +1380,7 @@ components:
1371
1380
items :
1372
1381
$ref : ' schema.yaml#/components/schemas/Experiment'
1373
1382
paging :
1374
- $ref : " schema.yaml#/components/schemas/Paging"
1383
+ $ref : ' schema.yaml#/components/schemas/Paging'
1375
1384
CreateExperimentSuccess :
1376
1385
description : Creates an experiment for the given project
1377
1386
content :
@@ -1417,9 +1426,9 @@ components:
1417
1426
data :
1418
1427
type : array
1419
1428
items :
1420
- $ref : " schema.yaml#/components/schemas/ExperimentHistory"
1429
+ $ref : ' schema.yaml#/components/schemas/ExperimentHistory'
1421
1430
paging :
1422
- $ref : " schema.yaml#/components/schemas/Paging"
1431
+ $ref : ' schema.yaml#/components/schemas/Paging'
1423
1432
GetExperimentHistorySuccess :
1424
1433
description : Get the specified historical version of an experiment
1425
1434
content :
@@ -1430,7 +1439,7 @@ components:
1430
1439
type : object
1431
1440
properties :
1432
1441
data :
1433
- $ref : " schema.yaml#/components/schemas/ExperimentHistory"
1442
+ $ref : ' schema.yaml#/components/schemas/ExperimentHistory'
1434
1443
ListTreatmentsSuccess :
1435
1444
description : Returns treatments with the given project_id. If pagination options were used, the results are scoped accordingly and the paging info in the response body is set.
1436
1445
content :
@@ -1445,7 +1454,7 @@ components:
1445
1454
items :
1446
1455
$ref : ' schema.yaml#/components/schemas/Treatment'
1447
1456
paging :
1448
- $ref : " schema.yaml#/components/schemas/Paging"
1457
+ $ref : ' schema.yaml#/components/schemas/Paging'
1449
1458
CreateTreatmentSuccess :
1450
1459
description : Creates a treatment for the given project
1451
1460
content :
@@ -1500,9 +1509,9 @@ components:
1500
1509
data :
1501
1510
type : array
1502
1511
items :
1503
- $ref : " schema.yaml#/components/schemas/TreatmentHistory"
1512
+ $ref : ' schema.yaml#/components/schemas/TreatmentHistory'
1504
1513
paging :
1505
- $ref : " schema.yaml#/components/schemas/Paging"
1514
+ $ref : ' schema.yaml#/components/schemas/Paging'
1506
1515
GetTreatmentHistorySuccess :
1507
1516
description : Get the specified historical version of a treatment
1508
1517
content :
@@ -1513,7 +1522,7 @@ components:
1513
1522
type : object
1514
1523
properties :
1515
1524
data :
1516
- $ref : " schema.yaml#/components/schemas/TreatmentHistory"
1525
+ $ref : ' schema.yaml#/components/schemas/TreatmentHistory'
1517
1526
ListSegmentsSuccess :
1518
1527
description : Returns segments with the given project_id. The results are paginated and the paging info in the response body is set.
1519
1528
content :
@@ -1528,7 +1537,7 @@ components:
1528
1537
items :
1529
1538
$ref : ' schema.yaml#/components/schemas/Segment'
1530
1539
paging :
1531
- $ref : " schema.yaml#/components/schemas/Paging"
1540
+ $ref : ' schema.yaml#/components/schemas/Paging'
1532
1541
CreateSegmentSuccess :
1533
1542
description : Creates a segment for the given project
1534
1543
content :
@@ -1583,9 +1592,9 @@ components:
1583
1592
data :
1584
1593
type : array
1585
1594
items :
1586
- $ref : " schema.yaml#/components/schemas/SegmentHistory"
1595
+ $ref : ' schema.yaml#/components/schemas/SegmentHistory'
1587
1596
paging :
1588
- $ref : " schema.yaml#/components/schemas/Paging"
1597
+ $ref : ' schema.yaml#/components/schemas/Paging'
1589
1598
GetSegmentHistorySuccess :
1590
1599
description : Get the specified historical version of a segment
1591
1600
content :
@@ -1596,7 +1605,7 @@ components:
1596
1605
type : object
1597
1606
properties :
1598
1607
data :
1599
- $ref : " schema.yaml#/components/schemas/SegmentHistory"
1608
+ $ref : ' schema.yaml#/components/schemas/SegmentHistory'
1600
1609
securitySchemes :
1601
1610
bearerAuth :
1602
1611
type : http
0 commit comments