Snowflake · Schema

GrantOf

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
created_on string Date and time when the grant was created
role string The name of the role
granted_to string The type of the grantee, can be USER or ROLE
grantee_name string The name of the grantee
granted_by string The role that granted this role to this grantee
View JSON Schema on GitHub

JSON Schema

role-grant-of-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GrantOf",
  "type": "object",
  "properties": {
    "created_on": {
      "type": "string",
      "description": "Date and time when the grant was created"
    },
    "role": {
      "type": "string",
      "description": "The name of the role"
    },
    "granted_to": {
      "type": "string",
      "description": "The type of the grantee, can be USER or ROLE"
    },
    "grantee_name": {
      "type": "string",
      "description": "The name of the grantee"
    },
    "granted_by": {
      "type": "string",
      "description": "The role that granted this role to this grantee"
    }
  }
}