{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Response for `thread/increment_elicitation`.",
  "properties": {
    "count": {
      "description": "Current out-of-band elicitation count after the increment.",
      "format": "int64",
      "type": "integer"
    },
    "paused": {
      "description": "Whether timeout accounting is paused after applying the increment.",
      "type": "boolean"
    }
  },
  "required": [
    "count",
    "paused"
  ],
  "title": "ThreadIncrementElicitationResponse",
  "type": "object"
}