planetscale · Schema

ClusterSize

An available cluster size SKU for database branches.

Properties

Name Type Description
slug string The slug identifier for the cluster size.
display_name string The human-readable name of the cluster size.
vcpus number The number of virtual CPUs.
memory_gb number The amount of memory in gigabytes.
storage_gb number The amount of storage in gigabytes.
engine string The database engine type.
View JSON Schema on GitHub

JSON Schema

planetscale-clustersize-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterSize",
  "title": "ClusterSize",
  "type": "object",
  "description": "An available cluster size SKU for database branches.",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The slug identifier for the cluster size."
    },
    "display_name": {
      "type": "string",
      "description": "The human-readable name of the cluster size."
    },
    "vcpus": {
      "type": "number",
      "description": "The number of virtual CPUs."
    },
    "memory_gb": {
      "type": "number",
      "description": "The amount of memory in gigabytes."
    },
    "storage_gb": {
      "type": "number",
      "description": "The amount of storage in gigabytes."
    },
    "engine": {
      "type": "string",
      "description": "The database engine type.",
      "enum": [
        "vitess",
        "postgres"
      ]
    }
  }
}