Misskey · Schema

QueueCount

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
waiting number
active number
completed number
failed number
delayed number
View JSON Schema on GitHub

JSON Schema

misskey-queuecount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/QueueCount",
  "title": "QueueCount",
  "type": "object",
  "properties": {
    "waiting": {
      "type": "number"
    },
    "active": {
      "type": "number"
    },
    "completed": {
      "type": "number"
    },
    "failed": {
      "type": "number"
    },
    "delayed": {
      "type": "number"
    }
  },
  "required": [
    "waiting",
    "active",
    "completed",
    "failed",
    "delayed"
  ]
}