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 service 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 name of role that granted the service role to the grantee
View JSON Schema on GitHub

JSON Schema

service-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 service 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 name of role that granted the service role to the grantee"
    }
  }
}