{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-submit-feedback-request-schema.json", "title": "SubmitFeedbackRequest", "description": "The structure representing the SubmitFeedbackRequest.", "type": "object", "properties": { "comment": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Optional feedback about this anomaly." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/FeedbackType" }, { "description": " The feedback tpye. Thee are two valid values, Positive and Negative. " } ] } }, "required": [ "type" ] }