-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.json
33 lines (33 loc) · 934 Bytes
/
metadata.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
{
"$id": "pcit/demo",
"$comment": "https://docs.ci.khs1994.com/usage/",
"description": "this is a pcit demo plugin",
"github": "https://github.com/pcit-plugins/pcit-demo",
"author": "PCIT",
"tags": "Demo",
"title": "JSON schema for configuring PCIT CI/CD plugin",
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"var": {
"type": "string",
"description": "value is string",
"default": " 1"
},
"var_array": {
"type": "array",
"uniqueItems": true,
"minItems": 1,
"description": "value is array",
"default": [
"\n - a\n - b"
]
},
"var_obj": {
"type": "object",
"description": "value is object",
"default": [
"\n k1: v1\n k2: v2"
]
}
}
}