Skip to content

Commit

Permalink
SP-18014: Fix http response
Browse files Browse the repository at this point in the history
  • Loading branch information
GubinAlexander committed Sep 5, 2024
1 parent a7d3053 commit 0d8abba
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
3 changes: 2 additions & 1 deletion p-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ components:
items:
$ref: "#/components/schemas/ProcessRequestImage"
tag:
type: string
type: integer
format: uuid
description: "Session ID"
tenant:
type: string
Expand Down
18 changes: 13 additions & 5 deletions p-transaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ paths:
InData:
$ref: '#/components/schemas/InData'
tag:
type: string
type: integer
format: uuid
transactionId:
type: string
format: uuid
Expand Down Expand Up @@ -206,9 +207,15 @@ paths:
components:
schemas:
ListTransactionsByTagResponse:
type: array
items:
$ref: '#/components/schemas/GetTransactionsByTagResponse'
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/GetTransactionsByTagResponse'
metadata:
type: object
additionalProperties: true
GetTransactionsByTagResponse:
type: object
properties:
Expand All @@ -230,7 +237,8 @@ components:
type: integer
format: uuid
tag:
type: string
type: integer
format: uuid
outData:
$ref: '#/components/schemas/OutData'
inData:
Expand Down

0 comments on commit 0d8abba

Please sign in to comment.