linode · Schema

PaginatedDatabaseTypeList

View JSON Schema on GitHub

JSON Schema

linode-paginateddatabasetypelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedDatabaseTypeList",
  "title": "PaginatedDatabaseTypeList",
  "allOf": [
    {
      "$ref": "#/components/schemas/Pagination"
    },
    {
      "type": "object",
      "properties": {
        "data": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "label": {
                "type": "string"
              },
              "class": {
                "type": "string"
              },
              "vcpus": {
                "type": "integer"
              },
              "memory": {
                "type": "integer"
              },
              "disk": {
                "type": "integer"
              }
            }
          }
        }
      }
    }
  ]
}