Snowflake · Example Payload

Snowflake Createfunction Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Createfunction 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": "createFunction",
  "method": "POST",
  "path": "/api/v2/databases/{database}/schemas/{schema}/functions",
  "summary": "Create a Function",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatefunctionRequestExample",
      "example": {
        "function_type": "example_value",
        "name": "Example Title",
        "arguments": [
          {
            "name": "Example Title",
            "datatype": "FIXED",
            "value": "example_value"
          }
        ],
        "returns": "FIXED",
        "max_batch_rows": 10,
        "created_on": "2026-01-15T10:30:00Z",
        "signature": "example_value",
        "language": "example_value",
        "body": "example_value"
      }
    }
  ],
  "responseExamples": []
}