{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ThreadUnsubscribeResponse",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "$ref": "#/definitions/ThreadUnsubscribeStatus"
    }
  },
  "definitions": {
    "ThreadUnsubscribeStatus": {
      "type": "string",
      "enum": [
        "notLoaded",
        "notSubscribed",
        "unsubscribed"
      ]
    }
  }
}