{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "feedback kind review",
  "type": "object",
  "properties": {
    "author_id": {
      "description": "ID of the user who posted the feedback",
      "type": "string"
    },
    "account_id": {
      "description": "Account identifier",
      "type": "string"
    },
    "title": {
      "description": "Title posted along with the feedback",
      "type": "string"
    },
    "rating": {
      "description": "A rating or score the user added to the feedback",
      "type": "number"
    },
    "category": {
      "description": "Category the app is listed under in the source",
      "type": "string"
    },
    "owner": {
      "description": "What entity the feedback belongs to. Could be the organization, a competitor, or some other value.",
      "type": "string"
    }
  },
  "required": [
    "owner",
    "rating"
  ]
}
