Skip to content
Merged
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
34 changes: 27 additions & 7 deletions tdei-api-gateway-prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2511,6 +2511,19 @@
"format": "date-time"
}
},
{
"name": "status",
"in": "query",
"required": false,
"description": "<strong>status:</strong> Filters feedbacks by their status.",
"schema": {
"type": "string",
"enum": [
"open",
"resolved"
]
}
},
{
"name": "sort_by",
"in": "query",
Expand Down Expand Up @@ -2595,17 +2608,24 @@
"summary": "Retrieves the feedbacks summary.",
"description": "Retrieves the feedbacks summary. Response includes a summary of feedbacks such as total count, total overdue, and other relevant statistics.",
"operationId": "oswDatasetViewerFeedbacksMetadata",
"parameters": [],
"parameters": [
{
"name": "tdei_project_group_id",
"in": "query",
"required": false,
"description": "ID of the project group.",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Feedbacks summary retrieved successfully.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeedbackMetadata"
}
"$ref": "#/components/schemas/FeedbackMetadata"
}
}
}
Expand Down Expand Up @@ -4844,9 +4864,9 @@
"description": "Additional metadata related to the feedback.",
"properties": {
"total_count": {
"type": "string",
"type": "number",
"description": "Count of feedback entries.",
"example": "5"
"example": 5
},
"total_overdues": {
"type": "number",
Expand Down
34 changes: 27 additions & 7 deletions tdei-api-gateway-stage.json
Original file line number Diff line number Diff line change
Expand Up @@ -2511,6 +2511,19 @@
"format": "date-time"
}
},
{
"name": "status",
"in": "query",
"required": false,
"description": "<strong>status:</strong> Filters feedbacks by their status.",
"schema": {
"type": "string",
"enum": [
"open",
"resolved"
]
}
},
{
"name": "sort_by",
"in": "query",
Expand Down Expand Up @@ -2595,17 +2608,24 @@
"summary": "Retrieves the feedbacks summary.",
"description": "Retrieves the feedbacks summary. Response includes a summary of feedbacks such as total count, total overdue, and other relevant statistics.",
"operationId": "oswDatasetViewerFeedbacksMetadata",
"parameters": [],
"parameters": [
{
"name": "tdei_project_group_id",
"in": "query",
"required": false,
"description": "ID of the project group.",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Feedbacks summary retrieved successfully.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeedbackMetadata"
}
"$ref": "#/components/schemas/FeedbackMetadata"
}
}
}
Expand Down Expand Up @@ -4844,9 +4864,9 @@
"description": "Additional metadata related to the feedback.",
"properties": {
"total_count": {
"type": "string",
"type": "number",
"description": "Count of feedback entries.",
"example": "5"
"example": 5
},
"total_overdues": {
"type": "number",
Expand Down
34 changes: 27 additions & 7 deletions tdei-api-gateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -2511,6 +2511,19 @@
"format": "date-time"
}
},
{
"name": "status",
"in": "query",
"required": false,
"description": "<strong>status:</strong> Filters feedbacks by their status.",
"schema": {
"type": "string",
"enum": [
"open",
"resolved"
]
}
},
{
"name": "sort_by",
"in": "query",
Expand Down Expand Up @@ -2595,17 +2608,24 @@
"summary": "Retrieves the feedbacks summary.",
"description": "Retrieves the feedbacks summary. Response includes a summary of feedbacks such as total count, total overdue, and other relevant statistics.",
"operationId": "oswDatasetViewerFeedbacksMetadata",
"parameters": [],
"parameters": [
{
"name": "tdei_project_group_id",
"in": "query",
"required": false,
"description": "ID of the project group.",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Feedbacks summary retrieved successfully.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeedbackMetadata"
}
"$ref": "#/components/schemas/FeedbackMetadata"
}
}
}
Expand Down Expand Up @@ -4992,8 +5012,8 @@
},
"total_overdues": {
"type": "number",
"description": "Indicates number of overdue feedbacks.",
"example": 0
"description": "Count of feedback entries.",
"example": 5
},
"total_open": {
"type": "number",
Expand Down