Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
2.1 kB · 103 lines
JSON
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104{ "lexicon": 1, "id": "sh.tangled.repo.pull", "needsCbor": true, "needsType": true, "defs": { "main": { "type": "record", "key": "tid", "record": { "type": "object", "required": [ "target", "title", "patchBlob", "createdAt" ], "properties": { "target": { "type": "ref", "ref": "#target" }, "title": { "type": "string" }, "body": { "type": "string" }, "patch": { "type": "string", "description": "(deprecated) use patchBlob instead" }, "patchBlob": { "type": "blob", "accept": [ "text/x-patch" ], "description": "patch content" }, "source": { "type": "ref", "ref": "#source" }, "createdAt": { "type": "string", "format": "datetime" }, "mentions": { "type": "array", "items": { "type": "string", "format": "did" } }, "references": { "type": "array", "items": { "type": "string", "format": "at-uri" } } } } }, "target": { "type": "object", "required": [ "repo", "branch" ], "properties": { "repo": { "type": "string", "format": "at-uri" }, "branch": { "type": "string" } } }, "source": { "type": "object", "required": [ "branch", "sha" ], "properties": { "branch": { "type": "string" }, "sha": { "type": "string", "minLength": 40, "maxLength": 40 }, "repo": { "type": "string", "format": "at-uri" } } } }}