Skip to content

Commit

Permalink
Merge pull request #152 from regulaforensics/Fix_c#_client
Browse files Browse the repository at this point in the history
Fix java client
  • Loading branch information
GubinAlexander committed Feb 20, 2024
2 parents 925ab70 + 1cb7511 commit 8397d04
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion p-transaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ paths:
content:
application/json:
schema:
$ref: "./p-process.yml#/components/schemas/ProcessRequest"
$ref: "#/components/schemas/TransactionProcessRequest"
required: true
responses:
"200":
Expand Down Expand Up @@ -197,3 +197,37 @@ components:
type: array
items:
$ref: "common.yml#/components/schemas/ImageTransactionData"

TransactionProcessRequest:
type: object
properties:
tag:
type: string
description: "session id"
processParam:
$ref: "./p-process.yml#/components/schemas/ProcessParams"
List:
type: array
items:
$ref: "./p-process.yml#/components/schemas/ProcessRequestImage"
livePortrait:
type: string
format: base64
example: "Base64 encoded data"
description: "Live portrait photo"
extPortrait:
type: string
format: base64
example: "Base64 encoded data"
description: "Portrait photo from an external source"
ContainerList:
$ref: "./rt.yml#/components/schemas/ContainerList"
systemInfo:
$ref: "./p-process.yml#/components/schemas/ProcessSystemInfo"
passBackObject:
type: object
description: "Free-form object to be included in response. Must be object, not list or simple value.
Do not affect document processing. Use it freely to pass your app params. Stored in process logs."
additionalProperties: true
required:
- processParam

0 comments on commit 8397d04

Please sign in to comment.