1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.addSecret",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Add a CI secret",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "repo",
14 "key",
15 "value"
16 ],
17 "properties": {
18 "repo": {
19 "type": "string",
20 "format": "at-uri"
21 },
22 "key": {
23 "type": "string",
24 "maxLength": 50,
25 "minLength": 1
26 },
27 "value": {
28 "type": "string",
29 "maxLength": 200,
30 "minLength": 1
31 }
32 }
33 }
34 }
35 }
36 }
37}