Snowflake · Schema

FunctionArgument

An argument of function

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Argument's name
datatype string Argument's type
value string Argument's value
View JSON Schema on GitHub

JSON Schema

function-function-argument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FunctionArgument",
  "type": "object",
  "description": "An argument of function",
  "properties": {
    "name": {
      "type": "string",
      "description": "Argument's name"
    },
    "datatype": {
      "type": "string",
      "description": "Argument's type"
    },
    "value": {
      "type": "string",
      "description": "Argument's value"
    }
  }
}