{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "cursor": {
      "description": "Opaque pagination cursor returned by a previous call.",
      "type": [
        "string",
        "null"
      ]
    },
    "limit": {
      "description": "Optional page size; defaults to the standard thread-list page size.",
      "format": "uint32",
      "minimum": 0.0,
      "type": [
        "integer",
        "null"
      ]
    },
    "threadId": {
      "type": "string"
    }
  },
  "required": [
    "threadId"
  ],
  "title": "ThreadQueueListParams",
  "type": "object"
}