this repo has no description
at knot-xrpc 787 B view raw
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": ["did", "name"], 13 "properties": { 14 "did": { 15 "type": "string", 16 "format": "did", 17 "description": "DID of the user creating the repository" 18 }, 19 "name": { 20 "type": "string", 21 "description": "Name of the repository" 22 }, 23 "default_branch": { 24 "type": "string", 25 "description": "Default branch name" 26 } 27 } 28 } 29 } 30 } 31 } 32}