-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrt-image-data.yml
More file actions
46 lines (44 loc) · 1.21 KB
/
rt-image-data.yml
File metadata and controls
46 lines (44 loc) · 1.21 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
openapi: 3.0.4
components:
schemas:
DocGraphicsInfoItem:
title: "DocGraphicsInfoItem"
type: object
required:
- DocGraphicsInfo
properties:
DocGraphicsInfo:
$ref: "#/components/schemas/GraphicFieldsList"
GraphicFieldsList:
title: "GraphicFieldsList"
type: object
required:
- pArrayFields
- nFields
properties:
pArrayFields:
type: array
items:
$ref: "#/components/schemas/GraphicField"
nFields:
description: "Number of pArrayFields array elements"
type: number
GraphicField:
title: "GraphicField"
description: "Information about one graphic field - abstract class"
type: object
required:
- FieldRect
- FieldType
- FieldName
- image
properties:
FieldRect:
$ref: "./common.yml#/components/schemas/RectangleCoordinates"
FieldType:
$ref: "./e-graphic-field-type.yml#/components/schemas/GraphicFieldType"
FieldName:
description: "Graphic field symbolic name"
type: string
image:
$ref: "./common.yml#/components/schemas/ImageData"