Skip to content

Commit

Permalink
MODFQMMGR-137: Update APIs to use list of strings as result ids
Browse files Browse the repository at this point in the history
  • Loading branch information
bvsharp committed Feb 14, 2024
1 parent 7d84dfc commit cfe1cfa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/resources/swagger.api/queryTool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ components:
name: afterId
in: query
schema:
$ref: '#/components/schemas/UUID'
type: array
items:
type: string
required: false
description: ID of the last element from the previous query

Expand Down Expand Up @@ -342,8 +344,9 @@ components:
queryResultIds:
type: array
items:
type: string
format: UUID
type: array
items:
type: string
fields:
type: array
items:
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/swagger.api/schemas/entityTypeColumn.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
"isCustomField": {
"description": "Indicates if the column belongs to the custom field.",
"type": "boolean"
},
"isIdColumn": {
"description": "Indicates if the column is part of the unique identifier for this entity type",
"type": "boolean"
}
},
"required": [
Expand Down

0 comments on commit cfe1cfa

Please sign in to comment.