This repository has no description
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.repo.updateSiteConfig",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Create or update the site configuration for a repository and trigger a deployment.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["repoDid", "branch", "dir"],
13 "properties": {
14 "repoDid": {
15 "type": "string",
16 "format": "did",
17 "description": "DID of the repository as minted by the knot."
18 },
19 "branch": {
20 "type": "string",
21 "description": "Branch to deploy from."
22 },
23 "dir": {
24 "type": "string",
25 "description": "Directory within the repository to deploy (e.g. '/' or '/docs')."
26 },
27 "isIndex": {
28 "type": "boolean",
29 "description": "Whether this repo should serve as the index (root) for the claimed domain."
30 }
31 }
32 }
33 },
34 "errors": [
35 { "name": "NoDomainClaim", "description": "The account does not have an active domain claim." }
36 ]
37 }
38 }
39}