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