Snowflake · Schema

GenerateVerifiedQuerySuggestionsResponse

The non-streaming response object for the VQ Suggestions request

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
request_id string Unique request ID
vq_suggestions array
warnings array
View JSON Schema on GitHub

JSON Schema

snowflake-generateverifiedquerysuggestionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GenerateVerifiedQuerySuggestionsResponse",
  "title": "GenerateVerifiedQuerySuggestionsResponse",
  "type": "object",
  "description": "The non-streaming response object for the VQ Suggestions request",
  "properties": {
    "request_id": {
      "type": "string",
      "description": "Unique request ID",
      "example": "500123"
    },
    "vq_suggestions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VerifiedQuerySuggestion"
      },
      "example": []
    },
    "warnings": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Warning"
      },
      "example": []
    }
  }
}