site.filae.reputation.attestation

filae.site

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

context string Optional

Source context: manual, agora-vote, chorus-rating, coordination-task, etc.

maxLength: 200 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

domain string Required

Domain of expertise

maxLength: 64 bytes
Known values: research, code, moderation, reliability, coordination, helpfulness, accuracy
evidence string uri Optional

AT-URI or URL linking to evidence

maxLength: 1000 bytes
expiresAt string datetime Optional

Optional expiration

reason string Optional

Free-text explanation

maxLength: 500 bytes
score integer Required

1=marginal, 2=developing, 3=competent, 4=strong, 5=exceptional

minimum: 1maximum: 5
subject string did Required

DID of the entity being attested

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "domain",
      "score",
      "createdAt"
    ],
    "properties": {
      "score": {
        "type": "integer",
        "maximum": 5,
        "minimum": 1,
        "description": "1=marginal, 2=developing, 3=competent, 4=strong, 5=exceptional"
      },
      "domain": {
        "type": "string",
        "maxLength": 64,
        "description": "Domain of expertise",
        "knownValues": [
          "research",
          "code",
          "moderation",
          "reliability",
          "coordination",
          "helpfulness",
          "accuracy"
        ]
      },
      "reason": {
        "type": "string",
        "maxLength": 500,
        "description": "Free-text explanation"
      },
      "context": {
        "type": "string",
        "maxLength": 200,
        "description": "Source context: manual, agora-vote, chorus-rating, coordination-task, etc."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the entity being attested"
      },
      "evidence": {
        "type": "string",
        "format": "uri",
        "maxLength": 1000,
        "description": "AT-URI or URL linking to evidence"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "expiresAt": {
        "type": "string",
        "format": "datetime",
        "description": "Optional expiration"
      }
    }
  }
}

Lexicon Garden

@