Snowflake · Example Payload

Snowflake Listgrants Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Listgrants Example is an example object payload from Snowflake, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listGrants",
  "method": "GET",
  "path": "/api/v2/databases/{database}/database-roles/{name}/grants",
  "summary": "List All Grants to the Role",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listgrants200Example",
      "example": [
        {
          "securable": {
            "database": "example_value",
            "schema": "example_value",
            "service": "example_value",
            "name": "Example Title"
          },
          "containing_scope": {
            "database": "example_value",
            "schema": "example_value"
          },
          "securable_type": "example_value",
          "grant_option": true,
          "privileges": [
            "example_value"
          ],
          "created_on": "2026-01-15T10:30:00Z",
          "granted_by": "example_value"
        }
      ]
    }
  ]
}