Skip to content

Commit

Permalink
SP-20415 - add doBarcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
inspector-code committed Dec 23, 2024
1 parent 00e8157 commit c6e423d
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
69 changes: 69 additions & 0 deletions e-input-barcode-type.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
openapi: 3.0.3
components:
schemas:
InputBarcodeType:
type: integer
description: "Enumeration contains the types of barcodes that can be processed"
enum:
- "bct_unknown"
- "bct_Code128"
- "bct_Code39"
- "bct_EAN8"
- "bct_ITF"
- "bct_PDF417"
- "bct_STF"
- "bct_MTF"
- "bct_IATA"
- "bct_CODABAR"
- "bct_UPCA"
- "bct_CODE93"
- "bct_UPCE"
- "bct_EAN13"
- "bct_QRCODE"
- "bct_AZTEC"
- "bct_DATAMATRIX"
- "bct_ALL_1D"
- "bct_Code11"
- "bct_JABCODE"
x-enum-varnames:
- "Unknown"
- "CODE128"
- "CODE39"
- "EAN8"
- "ITF"
- "PDF417"
- "STF"
- "MTF"
- "IATA"
- "CODABAR"
- "UPCA"
- "CODE93"
- "UPCE"
- "EAN13"
- "QRCODE"
- "AZTEC"
- "DATAMATRIX"
- "ALL_1D"
- "CODE11"
- "JABCODE"
x-enum-descriptions:
- "Unknown"
- "Code 128"
- "Code 39"
- "EAN-8"
- "ITF"
- "PDF417"
- "STF"
- "MTF"
- "IATA"
- "Codabar"
- "UPC-A"
- "Code 93"
- "UPC-E"
- "EAN-13"
- "QR code"
- "Aztec code"
- "Datamatrix"
- "All 1D barcodes"
- "Code 11"
- "JAB code"
5 changes: 5 additions & 0 deletions p-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,11 @@ components:
type: boolean
description: "Select the longest value from the different value sources and write it to the value field if comparison is done successfully. The parameter applies this logic to the personal names, such as given name, surname, surname and given name, middle name and etc."
# default: false
doBarcodes:
description: "Set the types of barcodes to process."
type: array
items:
$ref: "./e-input-barcode-type.yml#/components/schemas/InputBarcodeType"
required:
- scenario

Expand Down

0 comments on commit c6e423d

Please sign in to comment.