{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "classification": {
      "type": "string"
    },
    "extraLogFiles": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "includeLogs": {
      "type": "boolean"
    },
    "reason": {
      "type": [
        "string",
        "null"
      ]
    },
    "tags": {
      "additionalProperties": {
        "type": "string"
      },
      "type": [
        "object",
        "null"
      ]
    },
    "threadId": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "classification"
  ],
  "title": "FeedbackUploadParams",
  "type": "object"
}