Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SP-11417: Missing results for DocBarCodeInfo #128

Merged
merged 3 commits into from
Sep 18, 2023
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
23 changes: 15 additions & 8 deletions rt-barcodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,23 @@ components:
allOf:
- type: object
properties:
nFields:
type: integer
description: "Count of array fields"
pArrayFields:
type: array
description: "Data from barcode"
items:
$ref: "#/components/schemas/pArrayField"
DocBarCodeInfo:
$ref: "#/components/schemas/DocBarCodeInfoFieldsList"
- $ref: "./rt.yml#/components/schemas/ResultItem"


DocBarCodeInfoFieldsList:
type: object
properties:
nFields:
type: integer
description: "Count of array fields"
pArrayFields:
type: array
description: "Data from barcode"
items:
$ref: "#/components/schemas/pArrayField"

pArrayField:
type: object
properties:
Expand Down
1 change: 1 addition & 0 deletions rt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ components:

DocumentTypesCandidatesResult:
$ref: "./rt-doc-type-old.yml#/components/schemas/DocumentTypesCandidatesResult"

ChosenDocumentTypeResult:
$ref: "./rt-doc-type-old.yml#/components/schemas/ChosenDocumentTypeResult"

Expand Down