Snowflake · Example Payload

Snowflake Createprocedure Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Createprocedure 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": "createProcedure",
  "method": "POST",
  "path": "/api/v2/databases/{database}/schemas/{schema}/procedures",
  "summary": "Create a Procedure",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateprocedureRequestExample",
      "example": {
        "name": "Example Title",
        "execute_as": "CALLER",
        "is_secure": true,
        "arguments": [
          {
            "name": "Example Title",
            "datatype": "ARRAY",
            "default_value": "example_value"
          }
        ],
        "return_type": {
          "type": "example_value"
        },
        "language_config": {
          "language": "example_value",
          "called_on_null_input": true
        },
        "comment": "example_value",
        "body": "example_value",
        "created_on": "2026-01-15T10:30:00Z",
        "schema_name": "example_value",
        "database_name": "example_value",
        "min_num_arguments": 10,
        "max_num_arguments": 10,
        "owner": "example_value",
        "owner_role_type": "example_value",
        "is_builtin": true
      }
    }
  ],
  "responseExamples": []
}