Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions openapi/schemas/audience.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -3402,7 +3403,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -3658,7 +3659,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand Down Expand Up @@ -3786,6 +3787,9 @@
}
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand Down Expand Up @@ -3818,8 +3822,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
28 changes: 28 additions & 0 deletions openapi/schemas/campaign.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,34 @@
}
}
},
"/campaign/boost/preheat": {
"post": {
"tags": [
"Campaign"
],
"responses": {
"204": {
"description": "No Content"
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ValidationProblemDetails"
}
}
}
},
"401": {
"description": "Unauthenticated"
},
"403": {
"description": "Forbidden"
}
}
}
},
"/campaigns": {
"get": {
"tags": [
Expand Down
13 changes: 8 additions & 5 deletions openapi/schemas/dataset.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -1338,7 +1339,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -1379,7 +1380,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand All @@ -1403,6 +1404,9 @@
}
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand All @@ -1418,8 +1422,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
13 changes: 8 additions & 5 deletions openapi/schemas/identity.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -1459,7 +1460,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -1546,7 +1547,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand Down Expand Up @@ -1663,6 +1664,9 @@
}
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand Down Expand Up @@ -1694,8 +1698,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
13 changes: 8 additions & 5 deletions openapi/schemas/leaderboard.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2950,7 +2950,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -5182,7 +5183,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -5275,7 +5276,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand All @@ -5299,6 +5300,9 @@
}
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand Down Expand Up @@ -5422,8 +5426,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
37 changes: 30 additions & 7 deletions openapi/schemas/order.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2858,7 +2858,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -2972,7 +2973,9 @@
"definitionId",
"name",
"definitionType",
"createdAt"
"createdAt",
"ownerId",
"ownerMail"
],
"type": "object",
"properties": {
Expand All @@ -2991,6 +2994,15 @@
"type": "string",
"description": "The creation timestamp.",
"format": "date-time"
},
"ownerId": {
"type": "string",
"description": "The id of the job definition's owner.",
"format": "uuid"
},
"ownerMail": {
"type": "string",
"description": "The email of the job definition's owner."
}
},
"description": "The result when a job definition has been retrieved."
Expand Down Expand Up @@ -5092,7 +5104,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -5194,7 +5206,9 @@
"name",
"definitionType",
"createdAt",
"revisionCount"
"revisionCount",
"ownerId",
"ownerMail"
],
"type": "object",
"properties": {
Expand All @@ -5214,6 +5228,13 @@
"revisionCount": {
"type": "integer",
"format": "int32"
},
"ownerId": {
"type": "string",
"format": "uuid"
},
"ownerMail": {
"type": "string"
}
}
},
Expand Down Expand Up @@ -5292,7 +5313,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand Down Expand Up @@ -5404,6 +5425,9 @@
]
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand All @@ -5419,8 +5443,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
15 changes: 9 additions & 6 deletions openapi/schemas/rapid.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Filter"
}
},
"nullable": true
}
}
},
Expand Down Expand Up @@ -3245,7 +3246,7 @@
}
}
},
"PageInfo": {
"Pagination": {
"type": "object",
"properties": {
"index": {
Expand Down Expand Up @@ -3298,7 +3299,7 @@
"nullable": true
},
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
]
},
Expand Down Expand Up @@ -3393,7 +3394,7 @@
"page": {
"allOf": [
{
"$ref": "#/components/schemas/PageInfo"
"$ref": "#/components/schemas/Pagination"
}
],
"description": "pagination information"
Expand Down Expand Up @@ -3608,6 +3609,9 @@
"description": "The model for reporting an issue with a rapid."
},
"RootFilter": {
"required": [
"filters"
],
"type": "object",
"properties": {
"filters": {
Expand Down Expand Up @@ -3640,8 +3644,7 @@
},
"SortCriterion": {
"required": [
"propertyName",
"direction"
"propertyName"
],
"type": "object",
"properties": {
Expand Down
Loading
Loading