Snowflake · Schema

BaseLanguage

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
runtime_version string Runtime version of the function's/procedure's specified language
packages array Packages to include with the function/procedure
imports array List of imports
handler string Fully qualified method name including the package and the class
View JSON Schema on GitHub

JSON Schema

procedure-base-language-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BaseLanguage",
  "type": "object",
  "properties": {
    "runtime_version": {
      "type": "string",
      "description": "Runtime version of the function's/procedure's specified language"
    },
    "packages": {
      "type": "array",
      "description": "Packages to include with the function/procedure"
    },
    "imports": {
      "type": "array",
      "description": "List of imports"
    },
    "handler": {
      "type": "string",
      "description": "Fully qualified method name including the package and the class"
    }
  }
}