{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PromptFeedback", "title": "PromptFeedback", "type": "object", "description": "A set of the feedback metadata for the prompt specified in GenerateContentRequest.content.", "properties": { "blockReason": { "type": "string", "description": "If set, the prompt was blocked and no candidates are returned.", "enum": [ "BLOCK_REASON_UNSPECIFIED", "SAFETY", "OTHER", "BLOCKLIST", "PROHIBITED_CONTENT" ] }, "safetyRatings": { "type": "array", "description": "Ratings for safety of the prompt.", "items": { "$ref": "#/components/schemas/SafetyRating" } } } }