This repository has no description
0

Configure Feed

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

core / lexicons / repo / create.json
1.7 kB 60 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.create", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Create a new repository", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "rkey", 14 "name" 15 ], 16 "properties": { 17 "rkey": { 18 "type": "string", 19 "format": "record-key", 20 "description": "Rkey of the repository record" 21 }, 22 "name": { 23 "type": "string", 24 "description": "Name of the repository" 25 }, 26 "defaultBranch": { 27 "type": "string", 28 "description": "Default branch to push to" 29 }, 30 "source": { 31 "type": "string", 32 "description": "A source URL to clone from, populate this when forking or importing a repository." 33 }, 34 "repoDid": { 35 "type": "string", 36 "format": "did", 37 "description": "Optional user-provided did:web to use as the repo identity instead of minting a did:plc." 38 } 39 } 40 } 41 }, 42 "output": { 43 "encoding": "application/json", 44 "schema": { 45 "type": "object", 46 "properties": { 47 "repoDid": { 48 "type": "string", 49 "format": "did" 50 }, 51 "key": { 52 "type": "string", 53 "description": "Multibase-encoded public signing key the knot holds for this repository" 54 } 55 } 56 } 57 } 58 } 59 } 60}