-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrt-rfid-text-data.yml
More file actions
50 lines (47 loc) · 1.44 KB
/
rt-rfid-text-data.yml
File metadata and controls
50 lines (47 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
openapi: 3.0.4
components:
schemas:
RFIDDocVisualExtendedInfoItem:
title: "RFIDDocVisualExtendedInfoItem"
type: object
required:
- DocVisualExtendedInfo
properties:
DocVisualExtendedInfo:
$ref: "#/components/schemas/RFIDDocVisualExtendedInfo"
RFIDDocVisualExtendedInfo:
title: "RFIDDocVisualExtendedInfo"
type: object
description: "Container for extracted text fields. Fields are identified by type and language"
required:
- nFields
- pArrayFields
properties:
nFields:
description: "Number of pArrayFields array elements"
type: number
pArrayFields:
type: array
items:
$ref: "#/components/schemas/RFIDDocVisualExtendedField"
RFIDDocVisualExtendedField:
title: "RFIDDocVisualExtendedField"
allOf:
- $ref: "./common.yml#/components/schemas/VisualExtendedFieldItem"
- $ref: "#/components/schemas/RFIDDocVisualExtendedFieldItem"
RFIDDocVisualExtendedFieldItem:
title: "RFIDDocVisualExtendedFieldItem"
type: object
required:
- OriginDG
- OriginTagEntry
properties:
OriginDG:
type: integer
OriginDGTag:
type: integer
OriginTagEntry:
description: "Record index of the text field source in the data group"
type: number
OriginEntryView:
type: integer