this repo has no description
at knot-xrpc 848 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.fork", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Fork a repository from a source repository", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": ["did", "source"], 13 "properties": { 14 "did": { 15 "type": "string", 16 "format": "did", 17 "description": "DID of the user creating the fork" 18 }, 19 "source": { 20 "type": "string", 21 "description": "Source repository URL to fork from" 22 }, 23 "name": { 24 "type": "string", 25 "description": "Name for the forked repository (defaults to basename of source)" 26 } 27 } 28 } 29 } 30 } 31 } 32}