{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "feedback kind nps",
  "type": "object",
  "properties": {
    "author_id": {
      "description": "ID of the user who posted the feedback",
      "type": "string"
    },
    "author_name": {
      "description": "Name of the user who posted the feedback",
      "type": "string"
    },
    "account_id": {
      "description": "Account identifier",
      "type": "string"
    },
    "title": {
      "description": "Title of the survey the feedback belongs to.",
      "type": "string"
    },
    "rating": {
      "description": "A rating or score the user added to the feedback.",
      "type": "number"
    }
  },
  "required": [
    "rating"
  ]
}
