Neon · Schema

DatabaseUpdateRequest

Request body for updating a database

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
database object
View JSON Schema on GitHub

JSON Schema

neon-databaseupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseUpdateRequest",
  "title": "DatabaseUpdateRequest",
  "type": "object",
  "description": "Request body for updating a database",
  "properties": {
    "database": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "The new database name"
        },
        "owner_name": {
          "type": "string",
          "description": "The new owner role name"
        }
      }
    }
  }
}