This repository has no description
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.repo.disableSite",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Remove the site configuration for a repository, deleting its deployed files.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["repoDid"],
13 "properties": {
14 "repoDid": {
15 "type": "string",
16 "format": "did",
17 "description": "DID of the repository as minted by the knot."
18 }
19 }
20 }
21 },
22 "errors": [
23 { "name": "SiteNotFound", "description": "No site configuration exists for this repository." }
24 ]
25 }
26 }
27}