Snowflake · Schema

VerifiedQuerySuggestion

A suggestion to add or remove or replace a Verified Query to a semantic model.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
score number Score of the suggestion, higher is better.
vq_to_add object
vq_to_remove object
View JSON Schema on GitHub

JSON Schema

snowflake-verifiedquerysuggestion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifiedQuerySuggestion",
  "title": "VerifiedQuerySuggestion",
  "type": "object",
  "description": "A suggestion to add or remove or replace a Verified Query to a semantic model.",
  "properties": {
    "score": {
      "type": "number",
      "description": "Score of the suggestion, higher is better.",
      "format": "float",
      "example": 42.5
    },
    "vq_to_add": {
      "$ref": "#/components/schemas/VerifiedQuery"
    },
    "vq_to_remove": {
      "$ref": "#/components/schemas/VerifiedQuery"
    }
  }
}