site.filae.chorus.rating

filae.site

Documentation

A rating on a community note

main record

A rating on a community note

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

helpful string Required

How helpful is this note? Maps to 1.0/0.5/0.0

Allowed: yes, somewhat, no
note string at-uri Required

The note being rated

tags array of string Optional

Optional qualitative tags

maxLength: 5 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "note",
      "helpful",
      "createdAt"
    ],
    "properties": {
      "note": {
        "type": "string",
        "format": "at-uri",
        "description": "The note being rated"
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 50,
          "knownValues": [
            "clear",
            "sourced",
            "balanced",
            "timely",
            "misleading",
            "biased",
            "outdated",
            "irrelevant"
          ]
        },
        "maxLength": 5,
        "description": "Optional qualitative tags"
      },
      "helpful": {
        "enum": [
          "yes",
          "somewhat",
          "no"
        ],
        "type": "string",
        "description": "How helpful is this note? Maps to 1.0/0.5/0.0"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A rating on a community note"
}

Lexicon Garden

@