Neon · Schema

ApiKeyCreateRequest

Request body for creating a new API key

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
key_name string The name for the new API key
View JSON Schema on GitHub

JSON Schema

neon-apikeycreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiKeyCreateRequest",
  "title": "ApiKeyCreateRequest",
  "type": "object",
  "description": "Request body for creating a new API key",
  "required": [
    "key_name"
  ],
  "properties": {
    "key_name": {
      "type": "string",
      "description": "The name for the new API key"
    }
  }
}