Snowflake · Schema

SuccessResponse

Schema for all the success responses returned by the server.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
status string Message returned by the server.
View JSON Schema on GitHub

JSON Schema

snowflake-successresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SuccessResponse",
  "title": "SuccessResponse",
  "type": "object",
  "description": "Schema for all the success responses returned by the server.",
  "properties": {
    "status": {
      "type": "string",
      "description": "Message returned by the server."
    }
  },
  "example": {
    "status": "Request successfully completed"
  }
}