net.botwatch.trust

7hird.dev

Documentation

How much the user trusts the subject to verify humans, identify bots, and trust the worthy.

main record

How much the user trusts the subject to verify humans, identify bots, and trust the worthy.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

score integer Required

100000 indicates maximum trust in the subject. -100000 indicates maximum distrust.

minimum: -100000maximum: 100000
subject string did Required

A decentralized identifier (DID).

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "score",
      "createdAt"
    ],
    "properties": {
      "score": {
        "type": "integer",
        "maximum": 100000,
        "minimum": -100000,
        "description": "100000 indicates maximum trust in the subject. -100000 indicates maximum distrust."
      },
      "subject": {
        "type": "string",
        "format": "did"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "How much the user trusts the subject to verify humans, identify bots, and trust the worthy."
}

Lexicon Garden

@