Snowflake · Example Payload

Snowflake Createtask Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Createtask 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": "createTask",
  "method": "POST",
  "path": "/api/v2/databases/{database}/schemas/{schema}/tasks",
  "summary": "Create a Task",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "name_example",
        "warehouse": "REGRESS",
        "schedule": {
          "schedule_type": "MINUTES_TYPE",
          "minutes": 10
        },
        "predecessors": [
          "task1",
          "task2",
          "task3"
        ],
        "comment": "test_comment",
        "definition": "select 1"
      }
    }
  ],
  "responseExamples": []
}