-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextensions_metaschema.yml
146 lines (135 loc) · 3.81 KB
/
extensions_metaschema.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
---
"$schema": http://json-schema.org/draft/schema#
"$id": extmetaschema#
# for draft4 compatibility:
id: extmetaschema#
description: Extensions metaschema
definitions:
schemaArray:
type: array
minItems: 1
items:
"$ref": "#"
type: object
dependencies:
# exclusive:
x-enum:
not:
required: [ x-bitfield ]
x-bitfield:
not:
required: [ x-enum ]
properties:
x-comment:
type: string
description: Additional comment, like description
x-tag-id:
description: Номер соответствующего полю тега в ФН
type: integer
x-name:
description: Для переопределения названия поля в маппинге
type: string
format: "[a-z][a-z_0-9]*"
x-alias:
description: Создает alias этого поля
type: string
format: "[a-z][a-z_0-9]*"
x-enum:
description: Маппинг и описание значений поля
type: object
propertyNames:
description: Ключи хеша это названия для маппинга
pattern: ^[A-Za-z_][A-Za-z0-9_]*$
additionalProperties:
type: object
required: [ val ]
properties:
val:
description: значение, должно быть уникальным
title:
description: Название значения
type: string
description:
description: Описание значения
type: string
print:
description: Название значения для вывода пользователям/печати в чек
type: string
x-tag-id:
description: "Номер тега в ФН, который задействуется при использовании этого значения для поля"
type: integer
x-bitfield:
description: Маппинг и описание битов в битовом поле
type: object
propertyNames:
description: Ключи хеша это названия для маппинга
pattern: ^[A-Za-z_][A-Za-z0-9_]*$
additionalProperties:
type: object
required: [ bit ]
properties:
bit:
description: Номер бита, должен быть уникальным в пределах этого описания поля
title:
type: string
description: Название значения
print:
type: string
description: Название значения для вывода пользователям/печати в чек
description:
type: string
description: Описание значения
x-todo:
type: string
description: more comments
x-unknown:
description: Нет полной информации по этому полю
#Below are duplicates from json schema to provide looping
additionalItems:
anyOf:
- type: boolean
- "$ref": "#"
default: {}
items:
anyOf:
- "$ref": "#"
- "$ref": "#/definitions/schemaArray"
default: {}
additionalProperties:
anyOf:
- type: boolean
- "$ref": "#"
default: {}
definitions:
type: object
additionalProperties:
"$ref": "#"
default: {}
properties:
type: object
additionalProperties:
"$ref": "#"
default: {}
patternProperties:
type: object
additionalProperties:
"$ref": "#"
default: {}
dependencies:
type: object
additionalProperties:
anyOf:
- "$ref": "#"
- type: array
items:
type: string
minItems: 1
uniqueItems: true
allOf:
"$ref": "#/definitions/schemaArray"
anyOf:
"$ref": "#/definitions/schemaArray"
oneOf:
"$ref": "#/definitions/schemaArray"
not:
"$ref": "#"