{ "lexicon": 1, "id": "sh.tangled.repo.create", "defs": { "main": { "type": "procedure", "description": "Create a new repository", "input": { "encoding": "application/json", "schema": { "type": "object", "required": [ "rkey", "name" ], "properties": { "rkey": { "type": "string", "description": "Rkey of the repository record" }, "name": { "type": "string", "description": "Name of the repository" }, "defaultBranch": { "type": "string", "description": "Default branch to push to" }, "source": { "type": "string", "description": "A source URL to clone from, populate this when forking or importing a repository." }, "repoDid": { "type": "string", "format": "did", "description": "Optional user-provided did:web to use as the repo identity instead of minting a did:plc." } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "properties": { "repoDid": { "type": "string", "format": "did" } } } } } } }