atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.domain.defs",
4 "defs": {
5 "documentView": {
6 "type": "object",
7 "description": "Hydrated view of a document with re-hydrated content.",
8 "required": [
9 "uri",
10 "cid",
11 "did",
12 "rkey",
13 "title",
14 "path",
15 "record",
16 "indexedAt"
17 ],
18 "properties": {
19 "cid": {
20 "type": "string",
21 "format": "cid"
22 },
23 "did": {
24 "type": "string",
25 "format": "did"
26 },
27 "entryIndex": {
28 "type": "integer"
29 },
30 "entryUri": {
31 "type": "string",
32 "format": "at-uri"
33 },
34 "indexedAt": {
35 "type": "string",
36 "format": "datetime"
37 },
38 "path": {
39 "type": "string"
40 },
41 "record": {
42 "type": "unknown"
43 },
44 "rkey": {
45 "type": "string"
46 },
47 "title": {
48 "type": "string"
49 },
50 "uri": {
51 "type": "string",
52 "format": "at-uri"
53 }
54 }
55 },
56 "publicationView": {
57 "type": "object",
58 "description": "Hydrated view of a publication with domain info.",
59 "required": [
60 "uri",
61 "cid",
62 "did",
63 "rkey",
64 "name",
65 "domain",
66 "record",
67 "indexedAt"
68 ],
69 "properties": {
70 "cid": {
71 "type": "string",
72 "format": "cid"
73 },
74 "did": {
75 "type": "string",
76 "format": "did"
77 },
78 "domain": {
79 "type": "string"
80 },
81 "indexedAt": {
82 "type": "string",
83 "format": "datetime"
84 },
85 "name": {
86 "type": "string"
87 },
88 "notebookUri": {
89 "type": "string",
90 "format": "at-uri"
91 },
92 "record": {
93 "type": "unknown"
94 },
95 "rkey": {
96 "type": "string"
97 },
98 "uri": {
99 "type": "string",
100 "format": "at-uri"
101 }
102 }
103 }
104 }
105}