A research reference recorded in Strata. Captures the source, a structured takeaway, and confidence level. Can be linked to reasoning records for full provenance.
Record Key
tid
Timestamp-based ID
Properties
authors
array
of
string
Optional
Author names.
maxLength: 20 itemsconfidence
string
Required
Confidence level in the citation's relevance and accuracy.
Allowed:
org.latha.island.defs#high, org.latha.island.defs#medium, org.latha.island.defs#lowcreatedAt
string
datetime
Required
When this citation was recorded in Strata.
domain
string
Optional
Domain or discipline of the cited work (e.g. 'machine-learning', 'philosophy').
maxGraphemes: 100 graphemespublishedAt
string
datetime
Optional
Publication date of the cited work.
tags
array
of
string
Optional
Freeform topic tags.
maxLength: 20 itemstakeaway
string
Required
Key insight, summary, or main finding from the cited work.
maxGraphemes: 2000 graphemestitle
string
Required
Title of the cited work.
maxGraphemes: 300 graphemesurl
string
uri
Required
Source URL of the cited work.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"url",
"title",
"takeaway",
"confidence",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Source URL of the cited work."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxGraphemes": 100
},
"maxLength": 20,
"description": "Freeform topic tags."
},
"title": {
"type": "string",
"description": "Title of the cited work.",
"maxGraphemes": 300
},
"domain": {
"type": "string",
"description": "Domain or discipline of the cited work (e.g. 'machine-learning', 'philosophy').",
"maxGraphemes": 100
},
"authors": {
"type": "array",
"items": {
"type": "string",
"maxGraphemes": 200
},
"maxLength": 20,
"description": "Author names."
},
"takeaway": {
"type": "string",
"description": "Key insight, summary, or main finding from the cited work.",
"maxGraphemes": 2000
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this citation was recorded in Strata."
},
"confidence": {
"enum": [
"org.latha.island.defs#high",
"org.latha.island.defs#medium",
"org.latha.island.defs#low"
],
"type": "string",
"description": "Confidence level in the citation's relevance and accuracy."
},
"publishedAt": {
"type": "string",
"format": "datetime",
"description": "Publication date of the cited work."
}
}
},
"description": "A research reference recorded in Strata. Captures the source, a structured takeaway, and confidence level. Can be linked to reasoning records for full provenance."
}