Snowflake · Schema

DatabaseRoleClone

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Name of the database role
View JSON Schema on GitHub

JSON Schema

snowflake-databaseroleclone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseRoleClone",
  "title": "DatabaseRoleClone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$",
      "description": "Name of the database role",
      "example": "Example Title"
    }
  },
  "required": [
    "name"
  ]
}