38 lines
765 B
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
"owner"
16
],
17
"properties": {
18
"name": {
19
"type": "string",
20
"description": "name of the repo"
21
},
22
"owner": {
23
"type": "string",
24
"format": "did"
25
},
26
"knot": {
27
"type": "string",
28
"description": "knot where the repo was created"
29
},
30
"addedAt": {
31
"type": "string",
32
"format": "datetime"
33
}
34
}
35
}
36
}
37
}
38
}
39