{
  "lexicon": 1,
  "id": "net.bisks.memex.phrase",
  "defs": {
    "main": {
      "type": "record",
      "description": "One stock phrase kept in a person's memex phrasebook — a short line meant to be copied and posted verbatim elsewhere on the network, so the exact same wording links otherwise-unrelated posts together (quotable, and re-quotable by anyone else who picks it up). One record per phrase. Written and read by memex (https://memex.bisks.net).",
      "key": "tid",
      "record": {
        "type": "object",
        "required": ["text", "createdAt"],
        "properties": {
          "text": {
            "type": "string",
            "minLength": 1,
            "maxLength": 300,
            "maxGraphemes": 300,
            "description": "The phrase itself, verbatim — this exact string is what gets copied and reposted, so its wording is the point."
          },
          "note": {
            "type": "string",
            "maxLength": 500,
            "maxGraphemes": 500,
            "description": "Optional context: why this phrase is in the phrasebook, or what kind of post it's meant to link."
          },
          "source": {
            "type": "string",
            "maxLength": 800,
            "description": "Optional URL crediting where the phrase came from — the post that coined it, or the thread it was pulled from."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this phrase was added to the phrasebook, as an ISO 8601 datetime."
          }
        }
      }
    }
  }
}
