{ "lexicon": 1, "id": "sh.tangled.repo.log", "defs": { "main": { "type": "query", "parameters": { "type": "params", "required": ["repo", "ref"], "properties": { "repo": { "type": "string", "description": "Repository identifier in format 'did:plc:.../repoName'" }, "ref": { "type": "string", "description": "Git reference (branch, tag, or commit SHA)" }, "path": { "type": "string", "description": "Path to filter commits by", "default": "" }, "limit": { "type": "integer", "description": "Maximum number of commits to return", "minimum": 1, "maximum": 100, "default": 50 }, "cursor": { "type": "string", "description": "Pagination cursor (commit SHA)" } } }, "output": { "encoding": "*/*" }, "errors": [ { "name": "RepoNotFound", "description": "Repository not found or access denied" }, { "name": "RefNotFound", "description": "Git reference not found" }, { "name": "PathNotFound", "description": "Path not found in repository" }, { "name": "InvalidRequest", "description": "Invalid request parameters" } ] } } }