org.latha.island.citation

nandi.uk

Documentation

A research reference recorded in Strata. Captures the source, a structured takeaway, and confidence level. Can be linked to reasoning records for full provenance.

main record

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 items
confidence 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#low
createdAt 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 graphemes
publishedAt string datetime Optional

Publication date of the cited work.

tags array of string Optional

Freeform topic tags.

maxLength: 20 items
takeaway string Required

Key insight, summary, or main finding from the cited work.

maxGraphemes: 2000 graphemes
title string Required

Title of the cited work.

maxGraphemes: 300 graphemes
url 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."
}

Lexicon Garden

@