PutRecommendationFeedbackRequest

PutRecommendationFeedbackRequest schema from Amazon CodeGuru Reviewer

AmazonCode ReviewSecurityDevOpsMachine LearningDeveloper Tools

Properties

Name Type Description
CodeReviewArn object
RecommendationId object
Reactions object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-reviewer-put-recommendation-feedback-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-reviewer/refs/heads/main/json-schema/amazon-codeguru-reviewer-put-recommendation-feedback-request-schema.json",
  "title": "PutRecommendationFeedbackRequest",
  "description": "PutRecommendationFeedbackRequest schema from Amazon CodeGuru Reviewer",
  "type": "object",
  "properties": {
    "CodeReviewArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the <a href=\"https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html\">CodeReview</a> object. "
        }
      ]
    },
    "RecommendationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecommendationId"
        },
        {
          "description": "The recommendation ID that can be used to track the provided recommendations and then to collect the feedback."
        }
      ]
    },
    "Reactions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Reactions"
        },
        {
          "description": "List for storing reactions. Reactions are utf-8 text code for emojis. If you send an empty list it clears all your feedback."
        }
      ]
    }
  },
  "required": [
    "CodeReviewArn",
    "RecommendationId",
    "Reactions"
  ]
}