forked from dapr/components-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
component-metadata-schema.json
297 lines (297 loc) · 8.79 KB
/
component-metadata-schema.json
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/dapr/components-contrib/build-tools/pkg/metadataschema/component-metadata",
"$defs": {
"AuthenticationProfile": {
"properties": {
"title": {
"type": "string",
"description": "Title of the authentication profile."
},
"description": {
"type": "string",
"description": "Additional description for the authentication profile, optional."
},
"metadata": {
"items": {
"$ref": "#/$defs/Metadata"
},
"type": "array",
"description": "Metadata options applicable when using this authentication profile."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"title",
"description"
],
"description": "AuthenticationProfile is the type for an authentication profile."
},
"Binding": {
"properties": {
"input": {
"type": "boolean",
"description": "If \"true\", the binding can be used as input binding."
},
"output": {
"type": "boolean",
"description": "If \"true\", the binding can be used as output binding."
},
"operations": {
"items": {
"$ref": "#/$defs/BindingOperation"
},
"type": "array",
"description": "List of operations that the output binding support.\nRequired in output bindings, and not allowed in input-only bindings."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"operations"
],
"description": "Binding represents properties that are specific to bindings"
},
"BindingOperation": {
"properties": {
"name": {
"type": "string",
"description": "Name of the operation, such as \"create\", \"post\", \"delete\", etc."
},
"description": {
"type": "string",
"description": "Descrption of the operation."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name",
"description"
],
"description": "BindingOperation represents an operation offered by an output binding."
},
"BuiltinAuthenticationProfile": {
"properties": {
"name": {
"type": "string",
"description": "Name of the built-in authentication profile.\nCurrently supports:\n\n- `azuread` (Azure AD, including Managed Identity)."
},
"metadata": {
"items": {
"$ref": "#/$defs/Metadata"
},
"type": "array",
"description": "Additional metadata options applicable when using this authentication profile."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name"
],
"description": "BuiltinAuthenticationProfile is a reference to a built-in authentication profile."
},
"Metadata": {
"properties": {
"name": {
"type": "string",
"description": "Name of the metadata property."
},
"description": {
"type": "string",
"description": "Description of the property."
},
"required": {
"type": "boolean",
"description": "If \"true\", the property is required"
},
"sensitive": {
"type": "boolean",
"description": "If \"true\", the property represents a sensitive value such as a password."
},
"type": {
"type": "string",
"enum": [
"string",
"number",
"bool",
"duration"
],
"description": "Type of the property.\nIf this is empty, it's interpreted as \"string\"."
},
"default": {
"type": "string",
"description": "Default value for the property.\nIf it's a string, don't forget to add quotes."
},
"example": {
"type": "string",
"description": "Example value."
},
"allowedValues": {
"items": {
"type": "string"
},
"type": "array",
"description": "If set, forces the value to be one of those specified in this allowlist."
},
"binding": {
"$ref": "#/$defs/MetadataBinding",
"description": "If set, specifies that the property is only applicable to bindings of the type specified below.\nAt least one of \"input\" and \"output\" must be \"true\"."
},
"url": {
"$ref": "#/$defs/URL",
"description": "URL with additional information, such as docs."
},
"deprecated": {
"type": "boolean",
"description": "If set, specifies that the property is deprecated and should not be used in new configurations."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name",
"description",
"example"
],
"description": "Metadata property."
},
"MetadataBinding": {
"properties": {
"input": {
"type": "boolean",
"description": "If \"true\", the property can be used with the binding as input binding only."
},
"output": {
"type": "boolean",
"description": "If \"true\", the property can be used with the binding as output binding only."
}
},
"additionalProperties": false,
"type": "object",
"description": "MetadataBinding is the type for the \"binding\" property in the \"metadata\" object."
},
"URL": {
"properties": {
"title": {
"type": "string",
"description": "Title of the URL."
},
"url": {
"type": "string",
"description": "URL."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"title",
"url"
],
"description": "URL represents one URL with additional resources."
}
},
"properties": {
"schemaVersion": {
"type": "string",
"enum": [
"v1"
],
"description": "Version of the component metadata schema."
},
"type": {
"type": "string",
"enum": [
"bindings",
"state",
"secretstores",
"pubsub",
"workflows",
"configuration",
"lock",
"middleware"
],
"description": "Component type, of one of the allowed values."
},
"name": {
"type": "string",
"description": "Name of the component (without the inital type, e.g. \"http\" instead of \"bindings.http\")."
},
"version": {
"type": "string",
"description": "Version of the component, with the leading \"v\", e.g. \"v1\"."
},
"status": {
"type": "string",
"enum": [
"stable",
"beta",
"alpha",
"development-only"
],
"description": "Component status."
},
"title": {
"type": "string",
"description": "Title of the component, e.g. \"HTTP\"."
},
"description": {
"type": "string",
"description": "Additional description for the component, optional."
},
"urls": {
"items": {
"$ref": "#/$defs/URL"
},
"type": "array",
"description": "URLs with additional resources for the component, such as docs."
},
"binding": {
"$ref": "#/$defs/Binding",
"description": "Properties for bindings only.\nThis should not present unless \"type\" is \"bindings\"."
},
"capabilities": {
"items": {
"type": "string"
},
"type": "array",
"description": "Component capabilities.\nFor state stores, the presence of \"actorStateStore\" implies that the metadata property \"actorStateStore\" can be set. In that case, do not manually specify \"actorStateStore\" as metadata option."
},
"authenticationProfiles": {
"items": {
"$ref": "#/$defs/AuthenticationProfile"
},
"type": "array",
"description": "Authentication profiles for the component."
},
"builtinAuthenticationProfiles": {
"items": {
"$ref": "#/$defs/BuiltinAuthenticationProfile"
},
"type": "array",
"description": "Built-in authentication profiles to import."
},
"metadata": {
"items": {
"$ref": "#/$defs/Metadata"
},
"type": "array",
"description": "Metadata options for the component."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"schemaVersion",
"type",
"name",
"version",
"status",
"title",
"urls"
],
"title": "ComponentMetadata",
"description": "ComponentMetadata is the schema for the metadata.yaml / metadata.json files."
}