This repository has no description
1{
2 "lexicon": 1,
3 "id": "org.latha.papers.summary",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A summary of a research paper, generated from a Bluesky post linking to the paper.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "properties": {
12 "sourceUri": {
13 "type": "string",
14 "format": "at-uri",
15 "description": "AT URI of the Bluesky post that linked to the paper"
16 },
17 "paperUrl": {
18 "type": "string",
19 "format": "uri",
20 "description": "Canonical URL of the paper (arxiv, DOI, journal, etc.)"
21 },
22 "title": {
23 "type": "string",
24 "description": "Paper title"
25 },
26 "authors": {
27 "type": "array",
28 "items": { "type": "string" },
29 "description": "Author names"
30 },
31 "abstract": {
32 "type": "string",
33 "description": "Paper abstract or first few paragraphs"
34 },
35 "summary": {
36 "type": "string",
37 "description": "Short plain-text summary of the paper's contribution"
38 },
39 "summaryDoc": {
40 "type": "ref",
41 "ref": "pub.oxa.document",
42 "description": "Rich OXA document with structured summary"
43 },
44 "domains": {
45 "type": "array",
46 "items": { "type": "string" },
47 "description": "Research domains / fields"
48 },
49 "venue": {
50 "type": "string",
51 "description": "Publication venue (journal, conference, preprint server)"
52 },
53 "year": {
54 "type": "integer",
55 "description": "Publication year"
56 },
57 "posterDid": {
58 "type": "string",
59 "description": "DID of the Bluesky user who posted about the paper"
60 },
61 "posterHandle": {
62 "type": "string",
63 "description": "Handle of the Bluesky user who posted about the paper"
64 },
65 "postText": {
66 "type": "string",
67 "description": "Original text of the Bluesky post"
68 },
69 "indexedAt": {
70 "type": "string",
71 "format": "datetime",
72 "description": "When this summary was created"
73 }
74 },
75 "required": ["sourceUri", "paperUrl", "title", "summary", "indexedAt"]
76 }
77 }
78 }
79}