how.bun.reviews.review

cinny.bun.how

Documentation

Record containing a review of something.

main record

Record containing a review of something.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

The timestamp when this review was originally written.

langs array of string language Optional

Indicates natural language of text.

maxLength: 3 items
summary string Optional

A short summary of the review (perhaps a score).

maxLength: 1000 bytesmaxGraphemes: 96 graphemes
text string Required

The text of the review.

maxLength: 768000 bytesmaxGraphemes: 64000 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "subject",
      "text"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 768000,
        "description": "The text of the review.",
        "maxGraphemes": 64000
      },
      "langs": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "language"
        },
        "maxLength": 3,
        "description": "Indicates natural language of text."
      },
      "facets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        },
        "description": "Annotations of text (Bluesky-compatible richtext)."
      },
      "subject": {
        "refs": [
          "how.bun.reviews.subject#wikidataObject"
        ],
        "type": "union"
      },
      "summary": {
        "type": "string",
        "maxLength": 1000,
        "description": "A short summary of the review (perhaps a score).",
        "maxGraphemes": 96
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The timestamp when this review was originally written."
      }
    }
  },
  "description": "Record containing a review of something."
}

Lexicon Garden

@