net.botwatch.bot

lexicon.store View official

Documentation

A statement about whether the subject is a bot.

main record

A statement about whether the subject is a bot.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

score integer Required

100000 indicates total confidence that {subject} is a bot. -100000 indicates the opposite.

minimum: -100000maximum: 100000
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 total confidence that {subject} is a bot. -100000 indicates the opposite."
      },
      "subject": {
        "refs": [
          "#atprotoIdentity",
          "#facebookIdentity",
          "#xIdentity"
        ],
        "type": "union",
        "closed": false
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A statement about whether the subject is a bot."
}
atprotoIdentity object

No description available.

Properties

did string did Required

A decentralized identifier (DID).

View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    }
  }
}
facebookIdentity object

No description available.

Properties

value string Required

A Facebook user id.

maxLength: 100 bytes
View raw schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "maxLength": 100,
      "description": "A Facebook user id."
    }
  }
}
xIdentity object

No description available.

Properties

value string Required

An X username.

maxLength: 20 bytes
View raw schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "maxLength": 20,
      "description": "An X username."
    }
  }
}

Lexicon Garden

@