Snowflake · Schema

Argument

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Argument name
datatype string Argument data type
default_value string Default value of the argument
View JSON Schema on GitHub

JSON Schema

user-defined-function-argument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Argument",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Argument name"
    },
    "datatype": {
      "type": "string",
      "description": "Argument data type"
    },
    "default_value": {
      "type": "string",
      "description": "Default value of the argument"
    }
  }
}