Something went wrong. Try again.
Monorepo for Tangled forked from tangled.org/core
Something went wrong. Try again.
JSON
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182{ "lexicon": 1, "id": "sh.tangled.repo.pull", "needsCbor": true, "needsType": true, "defs": { "main": { "type": "record", "key": "tid", "record": { "type": "object", "required": [ "target", "title", "patch", "createdAt" ], "properties": { "target": { "type": "ref", "ref": "#target" }, "title": { "type": "string" }, "body": { "type": "string" }, "patch": { "type": "string" }, "source": { "type": "ref", "ref": "#source" }, "createdAt": { "type": "string", "format": "datetime" } } } }, "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" } } } }}