This repository has no description
1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.defs",
4 "defs": {
5 "repoViewBasic": {
6 "type": "object",
7 "required": ["did", "owner", "slug", "createdAt"],
8 "properties": {
9 "did": { "type": "string", "format": "did" },
10 "owner": { "type": "ref", "ref": "sh.tangled.actor.defs#profileViewBasic" },
11 "slug": { "type": "string" },
12 "description": { "type": "string" },
13 "createdAt": { "type": "string", "format": "datetime" },
14 "starCount": { "type": "integer" },
15 "viewer": { "type": "ref", "ref": "#viewerState" },
16 "isStarred": { "type": "boolean" }
17 }
18 },
19 "viewerState": {
20 "type": "object",
21 "description": "Metadata about the requesting account's relationship with the subject content. Only has meaningful content for authed requests.",
22 "properties": {
23 "star": { "type": "string", "format": "at-uri" }
24 }
25 }
26 }
27}