Snowflake · Schema

AccountIdentifiers

Array of unique account identifiers.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
accounts array
View JSON Schema on GitHub

JSON Schema

snowflake-accountidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountIdentifiers",
  "title": "AccountIdentifiers",
  "type": "object",
  "description": "Array of unique account identifiers.",
  "properties": {
    "accounts": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "example": []
    }
  },
  "example": {
    "accounts": [
      "accountName1",
      "accountName2"
    ]
  },
  "required": [
    "accounts"
  ]
}