forked from tangled.org/core
Something went wrong. Try again.
JSON
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768{ "lexicon": 1, "id": "sh.tangled.repo.pull", "needsCbor": true, "needsType": true, "defs": { "main": { "type": "record", "key": "tid", "record": { "type": "object", "required": [ "targetRepo", "targetBranch", "pullId", "title", "patch", "createdAt" ], "properties": { "targetRepo": { "type": "string", "format": "at-uri" }, "targetBranch": { "type": "string" }, "pullId": { "type": "integer" }, "title": { "type": "string" }, "body": { "type": "string" }, "patch": { "type": "string" }, "source": { "type": "ref", "ref": "#source" }, "createdAt": { "type": "string", "format": "datetime" } } } }, "source": { "type": "object", "required": [ "branch" ], "properties": { "branch": { "type": "string" }, "repo": { "type": "string", "format": "at-uri" } } } }}