This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / temp / repo / disableSite.json
733 B 27 lines
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}