This repository has no description
0

Configure Feed

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

core / knot2 / lexicons / repo / rename.json
1.1 kB 38 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.rename", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Rename a repository on this knot. The given rkey becomes the canonical record key. Prior rkeys keep resolving as aliases until the repository is deleted.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "repo", 14 "rkey", 15 "name" 16 ], 17 "properties": { 18 "repo": { 19 "type": "string", 20 "format": "did", 21 "description": "DID of the repository to rename" 22 }, 23 "rkey": { 24 "type": "string", 25 "format": "record-key", 26 "description": "Rkey of the sh.tangled.repo record written for the new name" 27 }, 28 "name": { 29 "type": "string", 30 "maxLength": 100, 31 "description": "New display name of the repository" 32 } 33 } 34 } 35 } 36 } 37 } 38}