Monorepo for Tangled tangled.org
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": [ 13 "name", 14 "knot", 15 "createdAt" 16 ], 17 "properties": { 18 "name": { 19 "type": "string", 20 "description": "name of the repo" 21 }, 22 "knot": { 23 "type": "string", 24 "description": "knot where the repo was created" 25 }, 26 "spindle": { 27 "type": "string", 28 "description": "CI runner to send jobs to and receive results from" 29 }, 30 "description": { 31 "type": "string", 32 "minGraphemes": 1, 33 "maxGraphemes": 140 34 }, 35 "source": { 36 "type": "string", 37 "format": "uri", 38 "description": "source of the repo" 39 }, 40 "labels": { 41 "type": "array", 42 "description": "List of labels that this repo subscribes to", 43 "items": { 44 "type": "string", 45 "format": "at-uri" 46 } 47 }, 48 "createdAt": { 49 "type": "string", 50 "format": "datetime" 51 } 52 } 53 } 54 } 55 } 56}